storybook/docs/snippets/common/other-foo-bar-story.js.mdx
2020-08-18 17:30:56 +01:00

11 lines
191 B
Plaintext

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