UNPKG

quick-ui-design

Version:

A Quick UI library for user interface design with React fast and easy.

10 lines (9 loc) 280 B
import { PaginationProps } from 'antd'; import { FC } from 'react'; import { PAGINATION } from '../../Types'; export interface IPagination { ctype: typeof PAGINATION; props: PaginationProps; } declare const Pagination: FC<IPagination>; export default Pagination;