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 f12edb5..5704b36 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,9 +1,11 @@ import React from "react"; import { Counter } from "./features/counter/Counter"; +import { Search } from "./ToDo-UI/Search"; function App() { return ( <div> + <Search /> <Counter /> </div> ); |