index.tsx 239 B

123456789101112
  1. import HeadCell from './HeadCell'
  2. import BodyCell from './BodyCell'
  3. import { TableComponents } from 'antd/lib/table'
  4. export const tableComponents: TableComponents = {
  5. header: {
  6. cell: HeadCell
  7. },
  8. body: {
  9. cell: BodyCell
  10. }
  11. }