diff options
author | Adrián Oliva <adrian.oliva@cimat.mx> | 2023-05-17 18:35:05 -0600 |
---|---|---|
committer | Adrián Oliva <adrian.oliva@cimat.mx> | 2023-05-17 18:35:05 -0600 |
commit | f6a1a1662771a95e48ad8cee8d42f6de32a70f49 (patch) | |
tree | 200d38239dc7f30eb0e395518446c8cdfbf9142a /src/App.jsx | |
parent | 22b15f833d388d2fed12b7f4dcd917c57712cbec (diff) | |
download | ToDo-App-FE-f6a1a1662771a95e48ad8cee8d42f6de32a70f49.tar.gz ToDo-App-FE-f6a1a1662771a95e48ad8cee8d42f6de32a70f49.zip |
Search section in a bare bones state.
Just plain UI interface. No functionality.
Diffstat (limited to '')
-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> ); |