import * as React from "react" import { cn } from "@/lib/utils" export interface FormContainerProps extends React.FormHTMLAttributes {} const FormContainer = React.forwardRef(({ className, ...props }, ref) => { return (
) }) FormContainer.displayName = "FormContainer" export { FormContainer }