14 lines
283 B
JavaScript

import React from 'react';
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.string.isRequired,
};