import { cn } from '@/lib/utils'; import { PropsWithChildren } from 'react'; type DatasetConfigurationContainerProps = { className?: string; show?: boolean; } & PropsWithChildren; export function DatasetConfigurationContainer({ children, className, show = true, }: DatasetConfigurationContainerProps) { return show ? (
{children}
) : ( children ); }