mirror of
https://github.com/lemeow125/Ivy-Frontend.git
synced 2025-05-14 10:31:07 +08:00
Separated all the widgets in the dashboard into their own components
This commit is contained in:
parent
6619163abe
commit
3b5fb87099
12 changed files with 405 additions and 133 deletions
|
@ -13,11 +13,24 @@ export interface ProductLogList {
|
|||
ProductLogs: ProductLog[];
|
||||
}
|
||||
|
||||
export interface ProductLogEntry {
|
||||
Product: {
|
||||
history_id: number;
|
||||
id: number;
|
||||
name: string;
|
||||
quantity: string;
|
||||
history_date: string;
|
||||
history_user_id: number;
|
||||
};
|
||||
}
|
||||
|
||||
export interface ProductLog {
|
||||
history_id: number;
|
||||
id: number;
|
||||
name: string;
|
||||
quantity: string;
|
||||
history_date: string;
|
||||
history_user_id: number;
|
||||
}
|
||||
|
||||
// Redux Interfaces
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue