storybook/docs/snippets/common/other-foo-bar-story.js.mdx
2021-01-28 00:11:22 +00:00

11 lines
211 B
Plaintext

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