UNPKG

@gpa-gemstone/react-table

Version:
12 lines (11 loc) 272 B
import * as React from 'react'; interface IProps { Default?: boolean; Label?: string; Key: string; } /** * Wrapper to make any column configurable */ export default function ConfigurableColumn(props: React.PropsWithChildren<IProps>): JSX.Element; export {};