mirror of
https://github.com/lemeow125/Ivy-Frontend.git
synced 2025-05-14 10:31:07 +08:00
Added individual product views and fixed login session checker
This commit is contained in:
parent
f411ea00a4
commit
48ed8f45c6
8 changed files with 83 additions and 26 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue