diff options
author | Adrián Oliva <adrian.oliva@cimat.mx> | 2023-05-17 18:38:28 -0600 |
---|---|---|
committer | Adrián Oliva <adrian.oliva@cimat.mx> | 2023-05-17 18:38:28 -0600 |
commit | 163398f68444d278eb83543ba9798a6441c8af9f (patch) | |
tree | a0a6a449013e8ec969c19ed9c673c475e5e769c5 /src/App.jsx | |
parent | 316f43a0f8db27620ba53bf5993f569a969742b5 (diff) | |
download | ToDo-App-FE-163398f68444d278eb83543ba9798a6441c8af9f.tar.gz ToDo-App-FE-163398f68444d278eb83543ba9798a6441c8af9f.zip |
Modal interface for new To Do.
Hardest one yet. I don't know how I did it, but I used the
`bootstrap-datepicker` plugin for selecting the Due Date.
(https://github.com/uxsolutions/bootstrap-datepicker)
Diffstat (limited to 'src/App.jsx')
-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 00b3278..a151a22 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,12 +1,14 @@ import React from "react"; import { Counter } from "./features/counter/Counter"; import { Search } from "./ToDo-UI/Search"; +import { NewToDo } from "./ToDo-UI/NewToDo"; import { ToDoList } from "./ToDo-UI/ToDoList"; function App() { return ( <div> <Search /> + <NewToDo /> <ToDoList /> <Counter /> </div> |