import React from 'react'; import PropTypes from 'prop-types'; export const Button = ({ onClick, label }) => ( ); Button.propTypes = { onClick: PropTypes.func.isRequired, label: PropTypes.string.isRequired, };