Add pagination

This commit is contained in:
yoan
2024-08-31 22:18:13 +08:00
parent a10d7dc2e9
commit 19d19486ae
5 changed files with 217 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
import DeployProgress from "@/components/certimate/DeployProgress";
import Pagination from "@/components/certimate/Pagination";
import Show from "@/components/Show";
import {
AlertDialogAction,
@@ -323,6 +324,14 @@ const Home = () => {
</div>
</div>
))}
<Pagination
totalPages={1000}
currentPage={3}
onPageChange={(page) => {
console.log(page);
}}
/>
</>
)}
</div>