mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:11:07 +08:00
14 lines
290 B
JavaScript
14 lines
290 B
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
export const Button = ({ onClick, children }) => (
|
|
<button type="button" onClick={onClick}>
|
|
{children}
|
|
</button>
|
|
);
|
|
|
|
Button.propTypes = {
|
|
onClick: PropTypes.func.isRequired,
|
|
children: PropTypes.node.isRequired,
|
|
};
|