import { cn } from '@/lib/utils' type MainProps = React.HTMLAttributes & { fixed?: boolean fluid?: boolean ref?: React.Ref } export function Main({ fixed, className, fluid, ...props }: MainProps) { return (
) }