import clsx from 'clsx'; import { HTMLProps } from 'react'; function TableList(props: HTMLProps) { return ( {props.children} ); } function Item(props: HTMLProps) { return ( {props.children} ); } export default Object.assign(TableList, { Item });