storybook/docs/snippets/common/storybook-framework-render-function.js.mdx
2020-10-07 12:23:34 +08:00

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;
}
```