storybook/docs/snippets/react/my-component-story-basic-and-props.js.mdx
2020-08-14 21:46:15 +01: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" />;
```