diff --git a/src/Components/Icons/ProductIcon/ProductIcon.tsx b/src/Components/Icons/ProductIcon/ProductIcon.tsx
new file mode 100644
index 0000000..5ee36eb
--- /dev/null
+++ b/src/Components/Icons/ProductIcon/ProductIcon.tsx
@@ -0,0 +1,26 @@
+import React from "react";
+
+export interface props {
+ size: number;
+ color: string;
+}
+export default function ProductIcon(props: props) {
+ return (
+
+ );
+}
diff --git a/src/Components/Products/BlobView/BlobView.tsx b/src/Components/Products/BlobView/BlobView.tsx
index 3a0cbe0..4a3ab3c 100644
--- a/src/Components/Products/BlobView/BlobView.tsx
+++ b/src/Components/Products/BlobView/BlobView.tsx
@@ -2,6 +2,7 @@ import * as React from "react";
import styles from "../../../styles";
import { ProductList } from "../../../Interfaces/Interfaces";
+import ProductIcon from "../../Icons/ProductIcon/ProductIcon";
export default function BlobView({ Products }: ProductList) {
return (
@@ -19,7 +20,11 @@ export default function BlobView({ Products }: ProductList) {
padding: 16,
}}
>
-
{row.name}
+
+
ID: {row.id}
Last Modified: {row.last_modified}
diff --git a/src/Routes/Products/Products.tsx b/src/Routes/Products/Products.tsx
index bf51052..4fbc17d 100644
--- a/src/Routes/Products/Products.tsx
+++ b/src/Routes/Products/Products.tsx
@@ -42,7 +42,10 @@ export default function Products() {
- toggleTableView(!tableView)} />
+
+
toggleTableView(!tableView)} />
+ View Type
+
{view()}
);
diff --git a/src/components/InventoryInfo/InventoryInfo.tsx b/src/components/InventoryInfo/InventoryInfo.tsx
deleted file mode 100644
index 43e3915..0000000
--- a/src/components/InventoryInfo/InventoryInfo.tsx
+++ /dev/null
@@ -1,35 +0,0 @@
-import { Table, TableBody, TableCell, TableContainer, TableHead, TableRow } from '@mui/material';
-import { ProductType } from '../ProductType/ProductType';
-
-type ProductInfoProps = {
- products: ProductType[];
-};
-
-export default function InventoryInfo(props: ProductInfoProps) {
- const { products } = props;
-
- return (
-
-
-
-
- Product ID
- Product Name
- Stocks
- Last Modified
-
-
-
- {products.map((product) => (
-
- {product.id.toString().padStart(3, '0')}
- {product.name}
- {product.stocks}
- {product.lastModified}
-
- ))}
-
-
-
- );
-}
diff --git a/src/components/ProductType/ProductType.tsx b/src/components/ProductType/ProductType.tsx
deleted file mode 100644
index 2ceafc8..0000000
--- a/src/components/ProductType/ProductType.tsx
+++ /dev/null
@@ -1,7 +0,0 @@
-export type ProductType = {
- id: number;
- name: string;
- stocks: number;
- lastModified: string;
- };
-
diff --git a/src/components/ProductsLists/ProductsLists.tsx b/src/components/ProductsLists/ProductsLists.tsx
deleted file mode 100644
index b66bd18..0000000
--- a/src/components/ProductsLists/ProductsLists.tsx
+++ /dev/null
@@ -1,24 +0,0 @@
-const ProductsLists = [
- {
- id: 1,
- name: 'Product 1',
- stocks: 10,
- lastModified: '3/2/2023, 2:11:45 PM'
- },
- {
- id: 2,
- name: 'Product 2',
- stocks: 5,
- lastModified: '3/2/2023, 2:21:23 PM'
- },
- {
- id: 3,
- name: 'Product 3',
- stocks: 15,
- lastModified: '3/2/2023, 1:35:56 PM'
- },
- // add more products here
- ];
-
- export default ProductsLists;
-
\ No newline at end of file