Add Product Partial

This commit is contained in:
jurenroy 2023-02-27 01:51:50 +08:00
parent 03e6ac60e9
commit 1edc69ab95
6 changed files with 86 additions and 16 deletions

View file

@ -1,14 +1,8 @@
import { Table, TableBody, TableCell, TableContainer, TableHead, TableRow } from '@mui/material';
type Product = {
id: number;
name: string;
stocks: number;
lastModified: string;
};
import { ProductType } from '../ProductType/ProductType';
type ProductInfoProps = {
products: Product[];
products: ProductType[];
};
export default function InventoryInfo(props: ProductInfoProps) {