mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 21:31:48 +08:00
16 lines
274 B
Plaintext
16 lines
274 B
Plaintext
```js
|
|
// FooBar.stories.js | FooBar.stories.jsx | FooBar.stories.ts | FooBar.stories.tsx
|
|
|
|
import { Foo } from './Foo';
|
|
|
|
export default {
|
|
component: Foo,
|
|
title: 'OtherFoo/Bar',
|
|
id: 'Foo/Bar', // Or 'foo-bar' if you prefer
|
|
};
|
|
|
|
export const Baz = {
|
|
name: 'Moo',
|
|
};
|
|
```
|