mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 21:31:48 +08:00
10 lines
296 B
JavaScript
10 lines
296 B
JavaScript
import { global as globalThis } from '@storybook/global';
|
|
|
|
import { Button } from './Button.jsx';
|
|
import { Pre } from './Pre.jsx';
|
|
import { Form } from './Form.jsx';
|
|
import { Html } from './Html.jsx';
|
|
|
|
globalThis.Components = { Button, Pre, Form, Html };
|
|
globalThis.storybookRenderer = 'preact';
|