style: replace virtual inner with logs list

This commit is contained in:
jialin
2024-11-06 09:29:12 +08:00
parent f684a3b0ae
commit 8bc67b323c
8 changed files with 144 additions and 242 deletions
@@ -1,7 +1,7 @@
import { useState } from 'react';
const useLogsPagination = () => {
const [pageSize, setPageSize] = useState(1000);
const [pageSize, setPageSize] = useState(500);
const [page, setPage] = useState(1);
const [total, setTotal] = useState(1);