storybook/docs/snippets/common/other-foo-bar-story.js.mdx
2020-10-07 12:23:34 +08: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';
```