Created
November 15, 2018 04:44
-
-
Save zapkub/60e9db5e15ad24cc0d15235013d3dcc3 to your computer and use it in GitHub Desktop.
Todo state
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
type TodoItem = { | |
title: string | |
completed: boolean | |
} | |
type TodoState = { | |
// ชนิดของ filter ที่ toggle อยู่ | |
filter: "All" | "Active" | "Completed", | |
// Todo ทั้งหมด | |
todos: Array<TodoItem>, | |
// เก็บ Input ของช่องสร้าง Todo | |
textInput: string | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment