diff --git a/src/pages/TodoPage.jsx b/src/pages/TodoPage.jsx index 43f2a21..8f2aebb 100644 --- a/src/pages/TodoPage.jsx +++ b/src/pages/TodoPage.jsx @@ -14,7 +14,7 @@ function TodoPage() { localStorage.setItem('todos', JSON.stringify(todos)) }, [todos]) - const [filter, setFilter] = useState('All') //보여줄 항목 필터링... + const [filter, setFilter] = useState('All') const addTodo = (label) => { const newTodo = { @@ -60,4 +60,4 @@ function TodoPage() { ) } -export default TodoPage \ No newline at end of file +export default TodoPage