aboutsummaryrefslogtreecommitdiff
path: root/src/App.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.js')
-rw-r--r--src/App.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/App.js b/src/App.js
index 91beeb6..6e90a3d 100644
--- a/src/App.js
+++ b/src/App.js
@@ -19,6 +19,7 @@ import './App.scss';
import { BrowserRouter, Route, Routes } from "react-router-dom";
import ManageItemsPage from './views/manage/items';
import ManageClientsPage from './views/manage/clients';
+import ManageBrandsPage from './views/manage/brands';
const App = () => {
return (
@@ -27,6 +28,7 @@ const App = () => {
<Routes>
<Route exact path="/manage/items" element={<ManageItemsPage/>}/>
<Route exact path="/manage/clients" element={<ManageClientsPage/>}/>
+ <Route exact path="/manage/brands" element={<ManageBrandsPage/>}/>
<Route path="*" element={<h1>404</h1>}/>
</Routes>
</main>