import { type ComponentProps, forwardRef } from 'react'; export const Table = forwardRef>( (props, ref) => { return (
); }, ); export const Tr = (props: ComponentProps<'tr'>) => { return ; }; export const Td = (props: ComponentProps<'td'>) => { return
; }; export const Th = (props: ComponentProps<'th'>) => { return ; };