Readded Inventory to routes. Created initial sampledata component

This commit is contained in:
keannu125 2023-03-02 20:47:12 +08:00
parent b0b5b5cf0f
commit 95501ed4ec
2 changed files with 10 additions and 0 deletions

View file

@ -9,6 +9,7 @@ import Store from "./Plugins/Redux/Store/Store";
import { Provider } from "react-redux";
import AddProduct from "./Routes/Products/AddProduct/AddProduct";
import EditProduct from "./Routes/Products/EditProduct/EditProduct";
import Inventory from "./Routes/Inventory/Inventory";
const router = createBrowserRouter([
{
@ -32,6 +33,14 @@ const router = createBrowserRouter([
</Container>
),
},
{
path: "/Inventory",
element: (
<Container>
<Inventory />
</Container>
),
},
{
path: "/Logs",
element: (

View file

@ -0,0 +1 @@
export const SampleData = {};