Files
web/components/Current/Section/index.tsx
2024-02-19 14:24:30 +01:00

10 lines
244 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>
)
}