import type * as React from 'react'; import { cn } from '@/lib/utils'; function Section({ className, ...props }: React.ComponentProps<'section'>) { return (
); } export { Section };