UNPKG

515 BJavaScriptView Raw
1// There can only be 1 default export per entry point and it has to be directly from public_api
2// Exporting this twice in order to to be able to import it like { addons } instead of 'addons'
3// prefer import { addons } from '@storybook/addons' over import addons from '@storybook/addons'
4//
5// See index.ts
6import { addons } from './index';
7export * from './make-decorator';
8export * from './index';
9export * from './types';
10export * from './storybook-channel-mock';
11export * from './hooks';
12export default addons;
\No newline at end of file