storybook/docs/snippets/common/other-foo-bar-story.js.mdx
2021-06-28 23:00:33 +01:00

11 lines
253 B
Plaintext

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