create schedule

This commit is contained in:
hamid zarghami
2025-11-16 10:06:19 +03:30
parent 2a3b9a7d6a
commit 3c14645fb5
10 changed files with 291 additions and 7 deletions
+2
View File
@@ -18,6 +18,7 @@ import OrderDetails from '@/pages/orders/Details'
import CommentsList from '@/pages/comments/List'
import CommentsDetails from '@/pages/comments/Details'
import ScheduleList from '@/pages/schedule/List'
import CreateSchedule from '@/pages/schedule/Create'
const MainRouter: FC = () => {
const { hasSubMenu } = useSharedStore()
@@ -47,6 +48,7 @@ const MainRouter: FC = () => {
<Route path={Pages.comments.list} element={<CommentsList />} />
<Route path={Pages.comments.detail + ':id'} element={<CommentsDetails />} />
<Route path={Pages.schedule.list} element={<ScheduleList />} />
<Route path={Pages.schedule.create} element={<CreateSchedule />} />
</Routes>
</div>
</div>