Created
June 26, 2020 16:10
-
-
Save kingsley-einstein/189da487db2297e88123a91130758211 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 { 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