| 2 | import { cn } from "@/lib/utils"; |
| 3 | |
| 4 | export interface SectionProps extends React.HTMLAttributes<HTMLDivElement> {} |
| 5 | |
| 6 | const Section = forwardRef<HTMLDivElement, SectionProps>(({ className, children, ...props }, ref) => { |
| 7 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected