Add Story type to example

This commit is contained in:
Danilo Cabello 2020-08-16 13:04:10 -04:00 committed by GitHub
parent 7a76812c41
commit 90a53e6745
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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