mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:31:05 +08:00
11 lines
211 B
Plaintext
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';
|
|
``` |