From f3852c1f5bea14e72e200389759f123b880ccfec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Oliva?= Date: Sun, 21 May 2023 17:58:01 -0600 Subject: Heavy refactoring. Broke `ToDo.jsx` into two separate files. Broke each function into simpler functions. Hope this makes the whole project more readable. --- src/App.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/App.jsx') diff --git a/src/App.jsx b/src/App.jsx index 80d3151..138c6b8 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,6 +1,6 @@ import React from "react"; -// import { Counter } from "./features/counter/Counter"; -import { NewToDo, ListToDos } from "./ToDo"; +import { NewToDo } from "./ToDo-UI/NewToDo"; +import { ListToDos } from "./ToDo-UI/ListToDo"; function App() { return ( -- cgit v1.2.3