mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:01:22 +08:00
Merge pull request #11305 from storybookjs/fix/examples-ci
Essentials example: Fix typescript error
This commit is contained in:
commit
3d9bfba941
@ -7,7 +7,7 @@ export default {
|
|||||||
argTypes: { onClick: { action: 'clicked' } },
|
argTypes: { onClick: { action: 'clicked' } },
|
||||||
};
|
};
|
||||||
|
|
||||||
const ButtonStory = (args) => <Button {...args} />;
|
const ButtonStory = (args: any) => <Button {...args} />;
|
||||||
|
|
||||||
export const Text = ButtonStory.bind({});
|
export const Text = ButtonStory.bind({});
|
||||||
Text.args = {
|
Text.args = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user