Skip to content

Instantly share code, notes, and snippets.

@TitasGailius
Created March 23, 2018 17:54
Show Gist options
  • Save TitasGailius/2481f02a6d019b3ae73be73e7d54d869 to your computer and use it in GitHub Desktop.
Save TitasGailius/2481f02a6d019b3ae73be73e7d54d869 to your computer and use it in GitHub Desktop.
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