Merge pull request #11305 from storybookjs/fix/examples-ci

Essentials example: Fix typescript error
This commit is contained in:
Michael Shilman 2020-06-25 07:17:05 +08:00 committed by GitHub
commit 3d9bfba941
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ export default {
argTypes: { onClick: { action: 'clicked' } },
};
const ButtonStory = (args) => <Button {...args} />;
const ButtonStory = (args: any) => <Button {...args} />;
export const Text = ButtonStory.bind({});
Text.args = {