fbredius/storybook

View on GitHub
docs/snippets/common/storybook-framework-render-function.js.mdx

Summary

Maintainability
Test Coverage
```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;
}
```