Browse Source

new file added

master
Prakash Maity 10 months ago
parent
commit
a2bf690e7f
4 changed files with 36 additions and 0 deletions
  1. +9
    -0
      src/components/main-nav.tsx
  2. +9
    -0
      src/components/module/Home.tsx
  3. +9
    -0
      src/components/ui/alert-dialog.tsx
  4. +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

Loading…
Cancel
Save