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 1938304..a7a2e5c 100644
--- a/src/App.js
+++ b/src/App.js
@@ -24,6 +24,7 @@ import ManagementPage from './views/manage/manage';
import ManageItemsPage from './views/manage/items';
import ManageClientsPage from './views/manage/clients';
import ManageBrandsPage from './views/manage/brands';
+import ManageInvoicesPage from './views/manage/invoices';
const App = () => {
return (
@@ -36,6 +37,7 @@ const App = () => {
<Route exact path="/manage/items" element={<ManageItemsPage/>}/>
<Route exact path="/manage/clients" element={<ManageClientsPage/>}/>
<Route exact path="/manage/brands" element={<ManageBrandsPage/>}/>
+ <Route exact path="/manage/invoices" element={<ManageInvoicesPage/>}/>
<Route exact path="/manage" element={<ManagementPage/>}/>
<Route path="*" element={<h1>404</h1>}/>
</Routes>