This website works better with JavaScript.
Home
Explore
Help
Sign In
SentientGeeks
/
Next-Architecture
Watch
8
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
new file added
master
Prakash Maity
10 months ago
parent
03ac0432d1
commit
a2bf690e7f
4 changed files
with
36 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+9
-0
src/components/main-nav.tsx
+9
-0
src/components/module/Home.tsx
+9
-0
src/components/ui/alert-dialog.tsx
+9
-0
src/components/ui/button.tsx
+ 9
- 0
src/components/main-nav.tsx
View File
@ -0,0 +1,9 @@
import
React
from
'react'
const
MainNav
=
(
)
=
>
{
return
(
<
div
>
MainNav
<
/
div
>
)
}
export
default
MainNav
+ 9
- 0
src/components/module/Home.tsx
View File
@ -0,0 +1,9 @@
import
React
from
'react'
const
Home
=
(
)
=
>
{
return
(
<
div
>
Home
<
/
div
>
)
}
export
default
Home
+ 9
- 0
src/components/ui/alert-dialog.tsx
View File
@ -0,0 +1,9 @@
import
React
from
'react'
const
AlertDialog
=
(
)
=
>
{
return
(
<
div
>
alert
-
dialog
<
/
div
>
)
}
export
default
AlertDialog
+ 9
- 0
src/components/ui/button.tsx
View File
@ -0,0 +1,9 @@
import
React
from
'react'
const
Button
=
(
)
=
>
{
return
(
<
div
>
Button
<
/
div
>
)
}
export
default
Button
Write
Preview
Loading…
Cancel
Save