Added individual product views and fixed login session checker

This commit is contained in:
Keannu Christian Bernasol 2023-03-06 13:59:16 +08:00
parent f411ea00a4
commit 48ed8f45c6
8 changed files with 83 additions and 26 deletions

View file

@ -5,12 +5,14 @@ export interface ProductList {
export interface Product {
id: number;
name: string;
last_modified: string;
date_added: string;
}
// Redux Interfaces
export interface LoginState {
Login: { logged_in: boolean };
logged_in: {
value: boolean;
};
}
export interface LoggedInUserState {