2022-10-14 18:45:33 +11:00

15 lines
362 B
JavaScript

/* 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 type="button" onClick={onClick}>
{label}
</button>
);
Button.propTypes = {
onClick: PropTypes.func.isRequired,
label: PropTypes.node.isRequired,
};