UNPKG

@storybook/web-components

Version:

Storybook Web Components renderer: Develop, document, and test UI components in isolation

15 lines (12 loc) 359 B
import { global as globalThis } from '@storybook/global'; import { ButtonTag } from './Button'; import { FormTag } from './Form'; import { HtmlTag } from './Html'; import { PreTag } from './Pre'; globalThis.__TEMPLATE_COMPONENTS__ = { Button: ButtonTag, Form: FormTag, Html: HtmlTag, Pre: PreTag, }; globalThis.storybookRenderer = 'web-components';