Separated all the widgets in the dashboard into their own components

This commit is contained in:
Keannu Christian Bernasol 2023-03-07 21:17:22 +08:00
parent 6619163abe
commit 3b5fb87099
12 changed files with 405 additions and 133 deletions

View file

@ -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