Skip to content

Commit fa2f955

Browse files
committed
Initial state for filtering set
1 parent b0e2ed2 commit fa2f955

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/App.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ const App: FC = () => {
99
const [toDoInput, setToDoInput] = useState<string>('');
1010
const [todos, setTodos] = useState<string[]>([]);
1111
const [toDoPosition, setToDoPosition] = useState<string>('all');
12+
const [toDoFilter, setToDoFilter] = useState<string[]>([]);
1213

1314

1415
return <div >

0 commit comments

Comments
 (0)