mirror of
https://github.com/lemeow125/Ivy-Frontend.git
synced 2025-05-13 01:51:06 +08:00
Inventory Route
This commit is contained in:
parent
1fded3cedf
commit
03e6ac60e9
4 changed files with 67 additions and 2 deletions
17
src/routes/Inventory/Inventory.tsx
Normal file
17
src/routes/Inventory/Inventory.tsx
Normal 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>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue