UNPKG

quick-ui-design

Version:

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

10 lines (9 loc) 277 B
import { CardGridProps } from 'antd/es/card'; import { FC } from 'react'; import { CARS_GRID } from '../../../Types'; export interface ICardGrid { ctype: typeof CARS_GRID; props: CardGridProps; } declare const CardGrid: FC<ICardGrid>; export default CardGrid;