import { Children, ReactElement } from 'react'; import styles from './Gallery.module.scss'; const Gallery = ({ children, columns = 2, }: { children: ReactElement; columns: number; }) => { const columnClass = styles[`wrapper--${columns}-columns`]; return ( ); }; export default Gallery; le='www.armandphilippot.com Git repository'/>
summaryrefslogtreecommitdiffstats
path: root/src/components/Header/Header.module.scss
blob: 96b864267cec8c63a15bb954eb12e837fecb8993 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22