structure + sidebar

This commit is contained in:
hamid zarghami
2025-04-28 10:15:35 +03:30
parent 2ef02e0b6b
commit 53212445c6
25 changed files with 1144 additions and 19 deletions
+13
View File
@@ -0,0 +1,13 @@
import { FC } from 'react'
import { Routes, Route } from 'react-router-dom'
import Home from '@/pages/home/Home'
const AppRouter: FC = () => {
return (
<Routes>
<Route path='/' element={<Home />} />
</Routes>
)
}
export default AppRouter