mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
10 lines
253 B
JavaScript
10 lines
253 B
JavaScript
import globalThis from 'global';
|
|
|
|
import { Button } from './Button';
|
|
import { Pre } from './Pre';
|
|
import { Form } from './Form';
|
|
import { Html } from './Html';
|
|
|
|
globalThis.Components = { Button, Pre, Form, Html };
|
|
globalThis.storybookRenderer = 'html';
|