import React from 'react' import PropTypes from 'prop-types' const Help = props => { return (
  • ) } export default Help Help.propTypes = { onClickHelp: PropTypes.func.isRequired }