import { FormContainer, 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 }: PropsWithChildren) { return
{children}
; }