From 0df780015536cd2e31b718caea068cda41458466 Mon Sep 17 00:00:00 2001 From: Wikzyy Date: Thu, 6 Mar 2025 14:20:12 +0700 Subject: [PATCH] add route for profession, provider, and products --- src/routing/AppRoutingSetup.tsx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/routing/AppRoutingSetup.tsx b/src/routing/AppRoutingSetup.tsx index 971fbaa..4730f01 100644 --- a/src/routing/AppRoutingSetup.tsx +++ b/src/routing/AppRoutingSetup.tsx @@ -30,6 +30,9 @@ import PostoAdmsMaster from '@/pages/master/postoadms/PostoAdmsMaster'; import SucosMaster from '@/pages/master/sucos/SucosMaster'; import AldeiasMaster from '@/pages/master/aldeias/AldeiasMaster'; import Municipios from '@/pages/master/municipios/Municipios'; +import ProfessionMaster from '@/pages/master/profession/ProfessionMaster'; +import ProductsMaster from '@/pages/master/products/ProductsMaster'; +import ProviderMaster from '@/pages/master/provider/ProviderMaster'; const AppRoutingSetup = (): ReactElement => { return ( @@ -43,8 +46,14 @@ const AppRoutingSetup = (): ReactElement => { } /> } /> } /> + } /> + } /> + } /> - } /> + } + /> } />