structure + sidebar
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user