UNPKG

rsuite

Version:

A suite of react components

14 lines (10 loc) 371 B
import PlaceholderParagraph from './PlaceholderParagraph'; import PlaceholderGrid from './PlaceholderGrid'; import PlaceholderGraph from './PlaceholderGraph'; export interface Placeholder { Paragraph: typeof PlaceholderParagraph; Grid: typeof PlaceholderGrid; Graph: typeof PlaceholderGraph; } declare const Placeholder: Placeholder; export default Placeholder;