mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 07:26:52 +00:00
17 lines
267 B
JavaScript
17 lines
267 B
JavaScript
import PropTypes from 'prop-types'
|
|
|
|
const Container = ({ children, layout, fullWidth, ...customMeta }) => {
|
|
return (
|
|
<div>
|
|
{/* 公共头 */}
|
|
{children}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
Container.propTypes = {
|
|
children: PropTypes.node
|
|
}
|
|
|
|
export default Container
|