@appbuckets/react-ui
Version:
Just Another React UI Framework
17 lines (16 loc) • 493 B
TypeScript
import * as React from 'react';
import { Creatable } from '../generic';
import { ItemContentProps } from './ItemContent.types';
import ItemHeader from './ItemHeader';
import ItemMeta from './ItemMeta';
import ItemText from './ItemText';
declare type ItemContentChildren = {
Header: typeof ItemHeader;
Meta: typeof ItemMeta;
Text: typeof ItemText;
};
declare const ItemContent: Creatable<
React.FunctionComponent<ItemContentProps>
> &
ItemContentChildren;
export default ItemContent;