mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-10 00:12:22 +08:00
9 lines
222 B
Plaintext
9 lines
222 B
Plaintext
```js
|
|
const rootElement = document.getElementById('root');
|
|
|
|
export default function renderMain({ storyFn }: RenderMainArgs) {
|
|
const storyObj = storyFn();
|
|
const html = fn(storyObj);
|
|
rootElement.innerHTML = html;
|
|
}
|
|
``` |