Files
web/components/Current/Section/index.tsx
2024-02-12 11:26:49 +01:00

12 lines
260 B
TypeScript

import styles from "./section.module.css"
export default function Section({ children }: React.PropsWithChildren) {
return (
<div className={styles.wrapper}>
<section className={styles.section}>
{children}
</section>
</div>
)
}