UNPKG

322 BJavaScriptView Raw
1import React from 'react'
2import PropTypes from 'prop-types'
3
4const Page = ({ children, url }) => {
5 return (
6 <main data-cms-url={url}>
7 {children}
8 </main>
9 )
10}
11
12Page.propTypes = {
13 children: PropTypes.oneOfType([
14 PropTypes.array,
15 PropTypes.object,
16 PropTypes.string
17 ])
18}
19
20export default Page