import classNames from "classnames" interface SectionProps extends React.HTMLAttributes { backgroundColor?: string children?: React.ReactNode } export function Section({ backgroundColor, children, ...props }: SectionProps) { return (
{children}
) }