import PropTypes from 'prop-types' const Container = ({ children, layout, fullWidth, ...customMeta }) => { return (
{/* 公共头 */} {children}
) } Container.propTypes = { children: PropTypes.node } export default Container