mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 11:11:53 +08:00
12 lines
250 B
Markdown
12 lines
250 B
Markdown
```ts filename="your-framework/src/client/preview/index.ts" renderer="common" language="ts"
|
|
import { start } from '@storybook/preview-api';
|
|
|
|
import './globals';
|
|
|
|
import render from './render';
|
|
|
|
const api = start(render);
|
|
|
|
// the boilerplate code
|
|
```
|