import { cn } from '@/lib/utils' import type { FC, ReactNode } from 'react' type Props = { children: ReactNode className?: string } const Form: FC = ({ children, className }) => (
{children}
) export default Form