mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-22 07:26:48 +00:00
Code🤣
This commit is contained in:
16
components/Container.js
Normal file
16
components/Container.js
Normal file
@@ -0,0 +1,16 @@
|
||||
import PropTypes from 'prop-types'
|
||||
|
||||
const Container = ({ children, layout, fullWidth, ...customMeta }) => {
|
||||
return (
|
||||
<div>
|
||||
{/* 公共头 */}
|
||||
{children}
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
Container.propTypes = {
|
||||
children: PropTypes.node
|
||||
}
|
||||
|
||||
export default Container
|
||||
Reference in New Issue
Block a user