mirror of
https://github.com/lemeow125/Ivy-Frontend.git
synced 2025-04-12 13:01:28 +08:00
61 lines
1 KiB
TypeScript
61 lines
1 KiB
TypeScript
export const SampleProducts = [
|
|
{
|
|
id: 1,
|
|
name: "Zidane's Water",
|
|
last_modified: "2/24/2023 10:05AM",
|
|
},
|
|
{
|
|
id: 2,
|
|
name: "Dan's Beefed Corn",
|
|
last_modified: "2/25/2023 4:05PM",
|
|
},
|
|
];
|
|
|
|
export const SampleLogData = [
|
|
{
|
|
id: 1,
|
|
p_id: 1,
|
|
p_name: "Zidane's Water",
|
|
amount_changed: -5,
|
|
timestamp: "2/24/2023 10:05AM",
|
|
},
|
|
{
|
|
id: 2,
|
|
p_id: 1,
|
|
p_name: "Zidane's Water",
|
|
amount_changed: +10,
|
|
timestamp: "2/24/2023 1:05PM",
|
|
},
|
|
{
|
|
id: 3,
|
|
p_id: 2,
|
|
p_name: "Dan's Beefed Corn",
|
|
amount_changed: +25,
|
|
timestamp: "2/25/2023 4:05PM",
|
|
},
|
|
{
|
|
id: 4,
|
|
p_id: 2,
|
|
p_name: "Dan's Beefed Corn",
|
|
amount_changed: -25,
|
|
timestamp: "2/26/2023 3:35PM",
|
|
},
|
|
];
|
|
|
|
export const SampleInventoryData = [
|
|
{
|
|
id: 1,
|
|
name: "Product 1",
|
|
in_stock: 10,
|
|
},
|
|
{
|
|
id: 2,
|
|
name: "Product 2",
|
|
in_stock: 5,
|
|
},
|
|
{
|
|
id: 3,
|
|
name: "Product 3",
|
|
in_stock: 15,
|
|
},
|
|
];
|