mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 01:01:07 +08:00
19 lines
355 B
JavaScript
19 lines
355 B
JavaScript
import { start } from '@storybook/core/client';
|
|
|
|
import './globals';
|
|
import render from './render';
|
|
|
|
const { clientApi, configApi, forceReRender } = start(render);
|
|
|
|
export const {
|
|
storiesOf,
|
|
setAddon,
|
|
addDecorator,
|
|
addParameters,
|
|
clearDecorators,
|
|
getStorybook,
|
|
} = clientApi;
|
|
|
|
export const { configure } = configApi;
|
|
export { forceReRender };
|