mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:01:06 +08:00
15 lines
362 B
JavaScript
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,
|
|
};
|