2024-08-08 15:49:43 +02:00

15 lines
278 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,
label: PropTypes.string,
};