diff --git a/src/App.tsx b/src/App.tsx index a399287bd..57cf4fd0b 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,156 +1,28 @@ /* eslint-disable jsx-a11y/control-has-associated-label */ + import React from 'react'; +import { useTodo } from './context/TodoContext'; +import { TodoHeader } from './components/TodoHeader'; +import { TodoList } from './components/TodoList'; +import { Footer } from './components/Footer'; + export const App: React.FC = () => { + const { todos } = useTodo(); + return (