storybook/docs/snippets/react/my-component-story-basic-and-props.js.mdx
2021-02-23 00:26:03 +00: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" />;
```