import type { HTMLProps } from "react"; import cn from "~/utils/cn"; function TableList(props: HTMLProps) { return (
{props.children}
); } function Item(props: HTMLProps) { return (
{props.children}
); } export default Object.assign(TableList, { Item });