mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 20:41:07 +08:00
10 lines
271 B
JavaScript
10 lines
271 B
JavaScript
import globalThis from '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';
|