storybook/docs/snippets/common/other-foo-bar-story.js.mdx
2020-08-09 01:41:24 +01:00

11 lines
193 B
Plaintext

```js
// your-story.story.js
export default {
title: 'OtherFoo/Bar',
id: 'Foo/Bar', // or 'foo-bar' if you prefer
};
export const Baz = () => BarStory.bind({});
Baz.storyName = 'Moo';
```