storybook/docs/snippets/common/other-foo-bar-story.js.mdx
2020-08-14 21:46:15 +01:00

11 lines
192 B
Plaintext

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