import { FormContainerProps } from '@/components/form-container'; import { cn } from '@/lib/utils'; import { PropsWithChildren } from 'react'; export function ConfigurationFormContainer({ children, className, }: FormContainerProps) { return
{children}
; } export function MainContainer({ children, className, }: PropsWithChildren & { className?: string }) { return
{children}
; }