UNPKG

teko-file-history

Version:

File history component for Teko system

11 lines (10 loc) 308 B
import React from 'react'; import { CardProps } from 'antd/lib/card'; export interface ContentBlockProps extends CardProps { /** * Has divider between title and body? */ hasDivider?: boolean; } declare const ContentBlock: React.FC<ContentBlockProps>; export default ContentBlock;