From c5b628f17da1bfa17251ecf82fcb146751954b72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Oliva?= Date: Sun, 21 May 2023 19:09:15 -0600 Subject: First attempt at filtering to do's. We have a separate list from the original `todos_list`. It saves all currently filtered to do's for the listing to be as easy as possible. --- src/App.jsx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/App.jsx') diff --git a/src/App.jsx b/src/App.jsx index 138c6b8..a77c0d2 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,10 +1,12 @@ import React from "react"; +import { Search } from "./ToDo-UI/Search"; import { NewToDo } from "./ToDo-UI/NewToDo"; import { ListToDos } from "./ToDo-UI/ListToDo"; function App() { return (
+
-- cgit v1.2.3