Created
June 26, 2020 15:23
-
-
Save kingsley-einstein/8811e4cc23dcd4a847d19f83dd496bba to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { User } from '../../../models'; | |
export interface UserState { | |
data: User | null; | |
users: User[] | null; | |
} | |
export const initialUserState : UserState = { | |
data: null, | |
users: null | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment