mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 00:41:05 +08:00
CLI: React template Button onClick
This commit is contained in:
parent
3282fc1600
commit
f8531a30d0
@ -74,10 +74,15 @@ Button.propTypes = {
|
||||
* Button contents
|
||||
*/
|
||||
label: PropTypes.string.isRequired,
|
||||
/**
|
||||
* Optional click handler
|
||||
*/
|
||||
onClick: PropTypes.func,
|
||||
};
|
||||
|
||||
Button.defaultProps = {
|
||||
backgroundColor: null,
|
||||
primary: false,
|
||||
size: 'medium',
|
||||
onClick: undefined,
|
||||
};
|
||||
|
@ -18,7 +18,7 @@ function configureMain(addons: string[], custom?: any) {
|
||||
function configurePreview(framework: SupportedFrameworks) {
|
||||
const parameters = `
|
||||
export const parameters = {
|
||||
actions: { argTypesRegex: "^on.*" },
|
||||
actions: { argTypesRegex: "^on[A-Z].*" },
|
||||
}`;
|
||||
|
||||
const preview =
|
||||
|
Loading…
x
Reference in New Issue
Block a user