'use client' import Pagination, { type Props as PaginationProps } from '@/app/components/base/pagination' import type { FC } from 'react' import Button from '@/app/components/base/button' import cn from '@/utils/classnames' type PageListProps = { list: [] pagination: PaginationProps onUpdate: () => void } const LogPageList: FC = ({ list = [], pagination, onUpdate, }) => { return (
{list.map((item: any, index) => ( ))}
训练语料数据集版本 训练时间 训练模型结果版本 操作
{item.version} {item.time} {item.version}
{/* Show Pagination only if the total is more than the limit */} {pagination.total && ( )}
) } export default LogPageList