CLI: React template Button onClick

This commit is contained in:
Michael Shilman 2020-07-11 21:40:22 +08:00
parent 3282fc1600
commit f8531a30d0
2 changed files with 6 additions and 1 deletions

View File

@ -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,
};

View File

@ -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 =