import React from 'react' import styles from './GridWrapper.module.scss' const GridWrapper = ({ children, includeLastItemSpacer = false }) => (
{children} {includeLastItemSpacer ?
: null}
) export default GridWrapper