import React from 'react' import PropTypes from 'prop-types' import styles from './FullWidth.module.css' const FullWidth = ({ children }) => (
{children}
) FullWidth.propTypes = { children: PropTypes.node } export default FullWidth