wix-style-react
Version:
17 lines (14 loc) • 360 B
JavaScript
import PropTypes from 'prop-types';
const Content = ({ children, stickyStyle }) => {
if (typeof children === 'function') {
return children({ stickyStyle });
} else {
return children;
}
};
Content.displayName = 'Page.Content';
Content.propTypes = {
children: PropTypes.node.isRequired,
fullScreen: PropTypes.bool,
};
export default Content;