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