@appbuckets/react-ui
Version:
Just Another React UI Framework
11 lines (10 loc) • 374 B
TypeScript
import * as React from 'react';
import { Creatable } from '../generic';
import { TableCellProps } from './TableCell.types';
import TableCellContent from './TableCellContent';
declare type TableCellChildren = {
Content: typeof TableCellContent;
};
declare const TableCell: Creatable<React.FunctionComponent<TableCellProps>> &
TableCellChildren;
export default TableCell;