| 1 | import {createTodo} from './actions'; |
| 2 | |
| 3 | export function TodoCreate() { |
| 4 | return ( |
| 5 | <form action={createTodo}> |
| 6 | <label> |
| 7 | Title: <input name="title" /> |
| 8 | </label> |
| 9 | <label> |
| 10 | Description: <textarea name="description" /> |
| 11 | </label> |
| 12 | <label> |
| 13 | Due date: <input type="date" name="dueDate" /> |
| 14 | </label> |
| 15 | <button>Add todo</button> |
| 16 | </form> |
| 17 | ); |
| 18 | } |