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