aboutsummaryrefslogtreecommitdiff
path: root/src/App.jsx
diff options
context:
space:
mode:
authorAdrián Oliva <adrian.oliva@cimat.mx>2023-05-17 18:35:05 -0600
committerAdrián Oliva <adrian.oliva@cimat.mx>2023-05-17 18:35:05 -0600
commitf6a1a1662771a95e48ad8cee8d42f6de32a70f49 (patch)
tree200d38239dc7f30eb0e395518446c8cdfbf9142a /src/App.jsx
parent22b15f833d388d2fed12b7f4dcd917c57712cbec (diff)
downloadToDo-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 'src/App.jsx')
-rw-r--r--src/App.jsx2
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>
);