Files
web/components/MyPages/Blocks/Stays/Container/index.tsx
2024-04-26 16:06:41 +02:00

6 lines
190 B
TypeScript

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