mirror of
https://github.com/lemeow125/Ivy-Frontend.git
synced 2025-05-14 10:31:07 +08:00
Add Product Partial
This commit is contained in:
parent
03e6ac60e9
commit
1edc69ab95
6 changed files with 86 additions and 16 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue