mirror of
https://github.com/oceanprotocol/docs.git
synced 2024-11-26 19:49:26 +01:00
* update most dependencies * simplify linting: kick out editorconfig, stylelint * update to @oceanprotocol/art v3.0.0, source new assets and update UI for it
14 lines
288 B
JavaScript
14 lines
288 B
JavaScript
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import styles from './Content.module.scss'
|
|
|
|
const Content = ({ children }) => (
|
|
<section className={styles.content}>{children}</section>
|
|
)
|
|
|
|
Content.propTypes = {
|
|
children: PropTypes.any.isRequired
|
|
}
|
|
|
|
export default Content
|