import type React from 'react' import { cn } from '../../utils/cn' type MainProps = React.ComponentProps<'main'> & { ref?: React.Ref } const Main = ({ className, ref, ...props }: MainProps) => { return (
) } Main.displayName = 'Main' export { Main }