1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-11-26 19:49:26 +01:00
This commit is contained in:
Matthias Kretschmann 2020-03-16 11:03:35 +01:00
parent 80d3fce840
commit c52f2782de
Signed by: m
GPG Key ID: 606EEEF3C479A91F

View File

@ -1,4 +1,5 @@
import React from 'react' import React from 'react'
import PropTypes from 'prop-types'
import remark from 'remark' import remark from 'remark'
import remarkReact from 'remark-react' import remarkReact from 'remark-react'
import styles from './Readme.module.scss' import styles from './Readme.module.scss'
@ -19,3 +20,9 @@ export default function Readme({ object }) {
) )
) )
} }
Readme.propTypes = {
object: PropTypes.shape({
text: PropTypes.string.isRequired
})
}