@storybook/preact
Version:
Storybook Preact renderer: Develop, document, and test UI components in isolation
10 lines (7 loc) • 309 B
JavaScript
import { global as globalThis } from '@storybook/global';
import { Button } from './Button.jsx';
import { Form } from './Form.jsx';
import { Html } from './Html.jsx';
import { Pre } from './Pre.jsx';
globalThis.__TEMPLATE_COMPONENTS__ = { Button, Pre, Form, Html };
globalThis.storybookRenderer = 'preact';