Skip to content

Instantly share code, notes, and snippets.

@kingsley-einstein
Created June 26, 2020 15:24
Show Gist options
  • Save kingsley-einstein/51c33497be5b8be37b01c7433c604916 to your computer and use it in GitHub Desktop.
Save kingsley-einstein/51c33497be5b8be37b01c7433c604916 to your computer and use it in GitHub Desktop.
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