Norbert de Langen 8bc4b24f3b
fixing linting
2022-10-26 10:02:19 +02:00

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;