From f6a1a1662771a95e48ad8cee8d42f6de32a70f49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Oliva?= Date: Wed, 17 May 2023 18:35:05 -0600 Subject: Search section in a bare bones state. Just plain UI interface. No functionality. --- src/App.jsx | 2 ++ src/ToDo-UI/Search.jsx | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 src/ToDo-UI/Search.jsx 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 (
+
); diff --git a/src/ToDo-UI/Search.jsx b/src/ToDo-UI/Search.jsx new file mode 100644 index 0000000..bb36dba --- /dev/null +++ b/src/ToDo-UI/Search.jsx @@ -0,0 +1,56 @@ +import React from "react"; + +export function Search() { + return ( +
+
+
+ + Name + + +
+
+ +
+
+
+ + +
+
+
+ +
+
+
+ + +
+
+ +
+
+ +
+
+
+
+ ); +} -- cgit v1.2.3