This commit is contained in:
2025-11-03 12:24:01 +02:00
commit 0806865287
177 changed files with 18453 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
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>
);
}