Recent transactions and total products now functional in dashboard

This commit is contained in:
Keannu Christian Bernasol 2023-03-07 18:25:38 +08:00
parent 3344ec1510
commit 3b565cfd34
4 changed files with 55 additions and 55 deletions

View file

@ -9,6 +9,17 @@ export interface Product {
quantity: number;
}
export interface ProductLogList {
ProductLogs: ProductLog[];
}
export interface ProductLog {
history_id: number;
name: string;
quantity: string;
history_date: string;
}
// Redux Interfaces
export interface LoginState {
logged_in: {