Essentials example: Fix typescript error

This commit is contained in:
Michael Shilman 2020-06-25 06:52:08 +08:00
parent 003dd2abe5
commit 6d1fce4f3c

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