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