1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-11-26 19:49:26 +01:00
docs/src/components/Content.jsx
Matthias Kretschmann 7014ee27a7
package updates
* update most dependencies
* simplify linting: kick out editorconfig, stylelint
* update to @oceanprotocol/art v3.0.0, source new assets and update UI for it
2020-07-01 11:28:50 +02:00

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