Made current session stats widget in dashboard functional

This commit is contained in:
Keannu Christian Bernasol 2023-03-07 19:52:40 +08:00
parent fd7891359c
commit 6619163abe
5 changed files with 60 additions and 3 deletions

View file

@ -43,6 +43,13 @@ export interface LoggedInUserState {
};
}
export interface SessionTransactions {
session_transactions: {
added: number;
removed: number;
};
}
// Component Props Interfaces
export interface IconProps {