diff options
Diffstat (limited to 'src/App.jsx')
-rw-r--r-- | src/App.jsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/App.jsx b/src/App.jsx index 5704b36..00b3278 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,11 +1,13 @@ import React from "react"; import { Counter } from "./features/counter/Counter"; import { Search } from "./ToDo-UI/Search"; +import { ToDoList } from "./ToDo-UI/ToDoList"; function App() { return ( <div> <Search /> + <ToDoList /> <Counter /> </div> ); |