Back to Storybook

Storybook Framework Render Function

docs/_snippets/storybook-framework-render-function.md

10.3.6309 B
Original Source
js
const rootElement = document.getElementById('root');

export default function renderMain({ storyFn }: RenderMainArgs) {
  const storyObj = storyFn();
  const html = fn(storyObj);
  rootElement.innerHTML = html;
}