diff --git a/src/App.tsx b/src/App.tsx index a399287bd..2f0e68e32 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,156 +1,29 @@ /* eslint-disable jsx-a11y/control-has-associated-label */ import React from 'react'; +import { Footer } from './components/Footer'; +import { Header } from './components/Header'; +import { TodoList } from './components/TodoList'; +import { useTodoContext } from './hooks/useTodoContext'; + export const App: React.FC = () => { + const { + state: { todos }, + } = useTodoContext(); + return (