Created
June 26, 2020 15:24
-
-
Save kingsley-einstein/51c33497be5b8be37b01c7433c604916 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