Files
web/components/Section/Container/index.tsx
2024-06-18 16:21:06 +02:00

14 lines
290 B
TypeScript

import styles from "./container.module.css"
export default function SectionContainer({
children,
className = "",
...props
}: React.HTMLAttributes<HTMLElement>) {
return (
<section {...props} className={`${styles.container} ${className}`}>
{children}
</section>
)
}