Polished states for logged_in and logged_in_user

This commit is contained in:
toledo 2023-03-16 20:43:38 +08:00
parent 9ccb8624af
commit 963ee6e830
7 changed files with 28 additions and 30 deletions

View file

@ -1,18 +1,3 @@
// Redux Interfaces
export interface LoginState {
Login: { logged_in: boolean };
}
export interface LoggedInUserState {
LoggedInUser: {
value: {
email: string;
id: number;
username: string;
};
};
}
// Component Props Interfaces
export interface NoteProps {