import React from 'react'; import PropTypes from 'prop-types'; import { Row, Col } from '@freecodecamp/react-bootstrap'; function FullWidthRow({ children }) { return ( {children} ); } FullWidthRow.displayName = 'FullWidthRow'; FullWidthRow.propTypes = { children: PropTypes.any }; export default FullWidthRow;