We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4371f7e commit be3d62aCopy full SHA for be3d62a
src/App.tsx
@@ -8,6 +8,7 @@ const App: FC = () => {
8
9
const [toDoInput, setToDoInput] = useState<string>('');
10
const [todos, setTodos] = useState<string[]>([]);
11
+ const [filterTodos, setFilterTodos] = useState<string>('all');
12
13
14
return <div >
0 commit comments