2022-12-09 20:44:55 +01:00

15 lines
346 B
JavaScript

import { global as globalThis } from '@storybook/global';
import { ButtonTag } from './Button';
import { FormTag } from './Form';
import { HtmlTag } from './Html';
import { PreTag } from './Pre';
globalThis.Components = {
Button: ButtonTag,
Form: FormTag,
Html: HtmlTag,
Pre: PreTag,
};
globalThis.storybookRenderer = 'web-components';