perfoama invoice

This commit is contained in:
hamid zarghami
2025-10-19 10:16:15 +03:30
parent 8ce42653cf
commit f3df4ccfc2
7 changed files with 127 additions and 9 deletions
+4
View File
@@ -5,6 +5,8 @@ import SideBar from '../shared/Sidebar'
import Header from '../shared/Header'
import { Paths } from '@/config/Paths'
import MyOrders from '@/pages/order/MyOrders'
import ProformaInvoice from '@/pages/invoice/ProformaInvoice'
import NewOrder from '@/pages/order/NewOrder'
const MainRouter: FC = () => {
return (
@@ -19,6 +21,8 @@ const MainRouter: FC = () => {
<Route path="/" element={<Home />} />
<Route path={Paths.home} element={<Home />} />
<Route path={Paths.myOrders} element={<MyOrders />} />
<Route path={Paths.proformaInvoice} element={<ProformaInvoice />} />
<Route path={Paths.newOrder} element={<NewOrder />} />
</Routes>
</div>
</div>