mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 07:32:02 +08:00
19 lines
570 B
TypeScript
19 lines
570 B
TypeScript
/// <reference types="webpack-env" />
|
|
|
|
// There can only be 1 default export per entry point and it has to be directly from index
|
|
// Exporting this twice in order to to be able to import it like { addons } instead of 'addons'
|
|
// prefer import { addons } from '@storybook/addons' over import addons from '@storybook/addons'
|
|
//
|
|
// See main.ts
|
|
|
|
import { addons } from './main';
|
|
|
|
export * from './make-decorator';
|
|
|
|
export * from './main';
|
|
export * from './storybook-channel-mock';
|
|
// eslint-disable-next-line import/no-cycle
|
|
export * from './hooks';
|
|
|
|
export default addons;
|