Files
web/components/TempDesignSystem/Grids/Scrollable/index.tsx
2024-06-13 10:00:16 +02:00

6 lines
195 B
TypeScript

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