Skip to content

Instantly share code, notes, and snippets.

@kingsley-einstein
Created June 26, 2020 16:10
Show Gist options
  • Save kingsley-einstein/189da487db2297e88123a91130758211 to your computer and use it in GitHub Desktop.
Save kingsley-einstein/189da487db2297e88123a91130758211 to your computer and use it in GitHub Desktop.
import { Post } from '../../../models';
export interface PostState {
data: Post | null;
posts: Post[] | null;
}
export const initialPostState: PostState = {
data: null,
posts: null
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment