storybook/docs/snippets/react/my-component-story-basic-and-props.js.mdx
2020-10-07 12:23:34 +08:00

15 lines
289 B
Plaintext

```js
// MyComponent.stories.js
import React from 'react';
import MyComponent from './MyComponent';
export default {
title: 'Path/To/MyComponent',
component: MyComponent,
};
export const Basic = () => <MyComponent />;
export const WithProp = () => <MyComponent prop="value" />;
```