UNPKG

quick-ui-design

Version:

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

10 lines (9 loc) 264 B
import { TimelineProps } from 'antd'; import { FC } from 'react'; import { TIMELINE } from '../../Types'; export interface ITimeline { ctype: typeof TIMELINE; props: TimelineProps; } declare const Timeline: FC<ITimeline>; export default Timeline;