import { cn } from "../util/cn"; export default function TableWrapper({ children, tableWrapperClassName, }: React.PropsWithChildren<{ tableWrapperClassName?: string; }>) { return (
{children}
); }