/* eslint-disable react/react-in-jsx-scope */ // eslint-disable-next-line import/no-extraneous-dependencies import PropTypes from 'prop-types'; export const Button = ({ onClick, label }) => ( ); Button.propTypes = { onClick: PropTypes.func.isRequired, label: PropTypes.node.isRequired, };