diff options
Diffstat (limited to '')
-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 ca2c07e..61c1300 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -3,6 +3,7 @@ import { Search } from "./ToDo-UI/Search"; import { NewToDo } from "./ToDo-UI/NewToDo"; import { ListToDos } from "./ToDo-UI/ListToDo"; import { Pagination } from "./ToDo-UI/Pagination"; +import { Average } from "./ToDo-UI/averageTime"; import { useDispatch, useSelector } from "react-redux"; import { @@ -27,6 +28,7 @@ function App() { <NewToDo /> <ListToDos /> <Pagination /> + <Average /> </div> ); } |