Files
futur-web-app/web/components/src/table/TableWrapper.tsx
2025-11-03 12:24:01 +02:00

15 lines
317 B
TypeScript

import { cn } from "../util/cn";
export default function TableWrapper({
children,
tableWrapperClassName,
}: React.PropsWithChildren<{
tableWrapperClassName?: string;
}>) {
return (
<div className={cn("flex flex-col h-full w-full border-white", tableWrapperClassName)}>
{children}
</div>
);
}