storybook/docs/snippets/common/storybook-framework-render-function.js.mdx
2020-08-11 01:11:41 +01:00

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