Files
web/components/Blocks/DynamicContent/Overview/Stats/Points/Container/index.tsx
2024-09-24 09:47:31 +02:00

6 lines
193 B
TypeScript

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