mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:41:11 +08:00
11 lines
270 B
Plaintext
11 lines
270 B
Plaintext
```js
|
|
// your-framework/src/client/preview/render.ts
|
|
|
|
const rootElement = document.getElementById('root');
|
|
|
|
export default function renderMain({ storyFn }: RenderMainArgs) {
|
|
const storyObj = storyFn();
|
|
const html = fn(storyObj);
|
|
rootElement.innerHTML = html;
|
|
}
|
|
``` |