aboutsummaryrefslogtreecommitdiff
path: root/src/App.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.jsx')
-rw-r--r--src/App.jsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/App.jsx b/src/App.jsx
index 682a1b1..33d44ce 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -1,13 +1,14 @@
import React from "react";
// import { Counter } from "./features/counter/Counter";
import { Search } from "./ToDo-UI/Search";
-import { Reducer } from "./ToDo-UI/ToDo";
+import { NewToDo, ListToDos } from "./ToDo-UI/ToDo";
function App() {
return (
<div>
<Search />
- <Reducer />
+ <NewToDo />
+ <ListToDos />
</div>
);
}