update section

This commit is contained in:
hamid zarghami
2026-02-02 10:03:24 +03:30
parent a25ab81d08
commit 7f2000ec6d
7 changed files with 154 additions and 3 deletions
+2
View File
@@ -42,6 +42,7 @@ import NewOrder from '@/pages/order/NewOrder'
import EditOrder from '@/pages/order/EditOrder'
import SectionList from '@/pages/print/List'
import CreateSection from '@/pages/print/Create'
import UpdateSection from '@/pages/print/Update'
const MainRouter: FC = () => {
return (
@@ -82,6 +83,7 @@ const MainRouter: FC = () => {
<Route path={Paths.print.list} element={<SectionList />} />
<Route path={Paths.print.create} element={<CreateSection />} />
<Route path={Paths.print.update + ':id'} element={<UpdateSection />} />
<Route path={Paths.features.list} element={<FeaturesList />} />
<Route path={Paths.features.create} element={<CreateFeature />} />