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

6 lines
194 B
TypeScript

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