chore: deploy model from local path

This commit is contained in:
jialin
2024-11-07 17:35:07 +08:00
parent 8bc67b323c
commit 93a6a77c2b
15 changed files with 270 additions and 77 deletions
@@ -1,7 +1,8 @@
import { useState } from 'react';
import { PageSize } from './config';
const useLogsPagination = () => {
const [pageSize, setPageSize] = useState(500);
const [pageSize, setPageSize] = useState(PageSize);
const [page, setPage] = useState(1);
const [total, setTotal] = useState(1);