import React from 'react' import { cn } from '@/lib/utils' interface MainProps extends React.HTMLAttributes { fixed?: boolean ref?: React.Ref } export const Main = ({ fixed, className, ...props }: MainProps) => { return (
) } Main.displayName = 'Main'