mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 11:11:53 +08:00
10 lines
278 B
JavaScript
10 lines
278 B
JavaScript
import { global as globalThis } from '@storybook/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';
|