diff --git a/src/App.jsx b/src/App.jsx index cca2356..d57c311 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -6,6 +6,7 @@ import Box from '@mui/material/Box'; import Products from './private/products/Products'; import Clients from './private/clients/Clients'; +import Providers from './private/providers/Providers'; function App() { const [zone, setZone] = useState('public'); // Could be 'public' | 'restricted' | 'private' @@ -30,6 +31,7 @@ function App() { {zone === 'public' && currentView === 'Products' && } {zone === 'public' && currentView === 'Clients' && } + {zone === 'public' && currentView === 'Providers' && }