import React from 'react'; import { Pagination as ArcoPagination, PaginationProps, } from '@arco-design/web-react'; import styles from './style/index.module.less'; interface CustomPaginationProps extends PaginationProps { className?: string; } const Pagination: React.FC = (props) => { const { className, ...restProps } = props; return (
`共 ${total} 条`} />
); }; export default Pagination;