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