import React from 'react'; import { Table as TablePrimitive, TableProps as TablePropsPrimitive } from '@modulz/primitives'; export type TableProps = TablePropsPrimitive type ExtractRefType = TypesThatMayContainReactRef extends {ref?: React.Ref} ? T : unknown; type PrimitiveRefType = ExtractRefType export const Table = React.forwardRef((props, ref) => { return ( ); }); export {Thead ,Tfoot ,Tbody ,Tr ,Th ,Td} from '@modulz/primitives';