mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-09 00:19:13 +08:00
13 lines
206 B
Plaintext
13 lines
206 B
Plaintext
```js
|
|
// FooBar.stories.js | FooBar.stories.jsx | FooBar.stories.ts | FooBar.stories.tsx
|
|
|
|
import { Foo } from './Foo';
|
|
|
|
export default {
|
|
component: Foo,
|
|
title: 'Foo/Bar',
|
|
};
|
|
|
|
export const Baz = {};
|
|
```
|