Inventory Route

This commit is contained in:
jurenroy 2023-02-25 18:49:36 +08:00
parent 1fded3cedf
commit 03e6ac60e9
4 changed files with 67 additions and 2 deletions

View file

@ -0,0 +1,17 @@
import React from "react";
import styles from "../../styles";
import InventoryIcon from "../../Components/Icons/InventoryIcon/InventoryIcon";
import InventoryInfo from "../../Components/InventoryInfo/InventoryInfo";
import ProductsLists from "../../Components/ProductsLists/ProductsLists";
export default function Inventory() {
return (
<div style={{ margin: 32, height: "100%" }}>
<div style={styles.content_row}>
<InventoryIcon size={8} color="white" />
<h1 style={styles.text_large}>Inventory</h1>
</div>
<InventoryInfo products={ProductsLists} />
</div>
);
}