import PropTypes from 'prop-types'; const ContentWrapper = ({ children }) => { return (
{children}
); } ContentWrapper.propTypes = { children: PropTypes.node.isRequired, } export default ContentWrapper;