import PropTypes from 'prop-types';
var Content = function Content(props) {
return props.children;
};
Content.displayName = 'Page.Content';
Content.propTypes = {
children: PropTypes.element.isRequired,
fullScreen: PropTypes.bool
};
export default Content;