fix: missing component
Some checks are pending
Deploy / deploy (push) Waiting to run

This commit is contained in:
Benno Tielen 2026-03-14 14:17:22 +01:00
parent 3a626f8189
commit c7300a0630
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,9 @@
import styles from './massgrid.module.scss'
type MassGridProps = {
children: React.ReactNode
}
export const MassGrid = ({ children }: MassGridProps) => {
return <div className={styles.grid}>{children}</div>
}

View file

@ -0,0 +1,7 @@
.grid {
display: grid;
grid-template-columns: repeat(auto-fill, 200px);
justify-content: center;
column-gap: 30px;
row-gap: 15px;
}