This commit is contained in:
hamid zarghami
2025-01-26 08:57:06 +03:30
parent be994782da
commit bfb9f3cbcb
6 changed files with 107 additions and 11 deletions
+2
View File
@@ -37,6 +37,7 @@ import Category from '../pages/service/Category'
import CustomerList from '../pages/customer/List'
import CreateCustomer from '../pages/customer/Create'
import TicketCategory from '../pages/ticket/Category'
import MessagesList from '../pages/messages/List'
const MainRouter: FC = () => {
@@ -86,6 +87,7 @@ const MainRouter: FC = () => {
<Route path={Pages.profile} element={<Profile />} />
<Route path={Pages.customer.list} element={<CustomerList />} />
<Route path={Pages.customer.create} element={<CreateCustomer />} />
<Route path={Pages.messages.list} element={<MessagesList />} />
</Routes>
</div>