storybook/docs/snippets/react/button-story.tsx.mdx
Virat Patel ce6b01dfd8
As we are using JSX syntax. we should use .tsx
As we are using JSX syntax. we should use .tsx as the file extension
2020-08-14 02:46:01 +05:30

9 lines
173 B
Plaintext

```ts
// Button.stories.tsx
import React from 'react';
import { Button } from './Button';
export const Primary: React.SFC<{}> = () => <Button primary>Button</Button>;
```