storybook/docs/_snippets/storybook-framework-render-function.md
2024-11-17 16:46:37 +00:00

310 B

const rootElement = document.getElementById('root');

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