import type * as React from "react" import { cn } from "@/lib/utils" interface SectionProps extends React.ComponentPropsWithoutRef<"section"> { children: React.ReactNode } export function Section({ children, className, ...props }: SectionProps) { return (
{children}
) }