mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:31:06 +08:00
10 lines
207 B
Plaintext
10 lines
207 B
Plaintext
```ts
|
|
// your-framework/src/client/preview/index.ts
|
|
|
|
import { start } from '@storybook/core/client';
|
|
import './globals';
|
|
import render from './render';
|
|
const api = start(render);
|
|
|
|
// the boilerplate code
|
|
``` |