import type { ReactNode } from "react"; import { cn } from "@/shared/lib/cn"; type DataTableShellProps = { toolbar: ReactNode; children: ReactNode; footer?: ReactNode; className?: string; }; export function DataTableShell({ toolbar, children, footer, className }: DataTableShellProps) { return (
{toolbar}
{children}
{footer ? (
{footer}
) : null}
); }