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 dd81431..ca2c07e 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -2,6 +2,7 @@ import React from "react"; 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 { useDispatch, useSelector } from "react-redux"; import { @@ -25,6 +26,7 @@ function App() { <Search /> <NewToDo /> <ListToDos /> + <Pagination /> </div> ); } |