Skip to content

Instantly share code, notes, and snippets.

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