Update docs/snippets/react/button-story-with-args.ts.mdx

Co-authored-by: Michael Shilman <shilman@users.noreply.github.com>
This commit is contained in:
Danilo Cabello 2020-08-17 09:39:07 -04:00 committed by GitHub
parent 90a53e6745
commit 3e3e7c38f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,7 @@
```ts
// Button.stories.ts
import { Story } from '@storybook/react';
import { Story } from '@storybook/react/types-6-0';
const Template: Story<ButtonProps> = (args) => <Button {...args} />;