mirror of
https://github.com/oceanprotocol/docs.git
synced 2024-11-26 19:49:26 +01:00
14 lines
284 B
JavaScript
14 lines
284 B
JavaScript
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import styles from './Content.module.scss'
|
|
|
|
const Content = ({ children }) => (
|
|
<div className={styles.content}>{children}</div>
|
|
)
|
|
|
|
Content.propTypes = {
|
|
children: PropTypes.any.isRequired
|
|
}
|
|
|
|
export default Content
|