list of schedules

This commit is contained in:
hamid zarghami
2025-11-16 09:07:43 +03:30
parent 322120635d
commit 2a3b9a7d6a
11 changed files with 253 additions and 8 deletions
+2
View File
@@ -17,6 +17,7 @@ import OrdersList from '@/pages/orders/List'
import OrderDetails from '@/pages/orders/Details'
import CommentsList from '@/pages/comments/List'
import CommentsDetails from '@/pages/comments/Details'
import ScheduleList from '@/pages/schedule/List'
const MainRouter: FC = () => {
const { hasSubMenu } = useSharedStore()
@@ -45,6 +46,7 @@ const MainRouter: FC = () => {
<Route path={Pages.orders.detail + ':id'} element={<OrderDetails />} />
<Route path={Pages.comments.list} element={<CommentsList />} />
<Route path={Pages.comments.detail + ':id'} element={<CommentsDetails />} />
<Route path={Pages.schedule.list} element={<ScheduleList />} />
</Routes>
</div>
</div>