settign structure

This commit is contained in:
hamid zarghami
2025-04-29 15:27:46 +03:30
parent da0e5e7b8c
commit c826d21add
11 changed files with 190 additions and 1 deletions
+2 -1
View File
@@ -3,12 +3,13 @@ import { Paths } from '@/utils/Paths'
import { Routes, Route } from 'react-router-dom'
import Home from '@/pages/home/Home'
import ReceivedList from '@/pages/received/List'
import Setting from '@/pages/setting/Setting'
const AppRouter: FC = () => {
return (
<Routes>
<Route path='/' element={<Home />} />
<Route path={Paths.received} element={<ReceivedList />} />
<Route path={Paths.setting} element={<Setting />} />
</Routes>
)
}