import React from 'react' import PropTypes from 'prop-types' export default class DocLabel extends React.Component { static propTypes = { label: PropTypes.oneOfType([ PropTypes.object, PropTypes.string ]).isRequired, doc: PropTypes.string.isRequired, } render() { return } }