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