Created
March 23, 2018 17:54
-
-
Save TitasGailius/2481f02a6d019b3ae73be73e7d54d869 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
export interface RootState { | |
todos: Todo[] | |
} | |
export interface Todo { | |
done: boolean | |
name: string | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment