Renderer-react: Fix IE11 support

This commit is contained in:
Michael Shilman 2022-04-21 11:16:19 +08:00
parent 8d1e54555e
commit 69eabda796
2 changed files with 6 additions and 5 deletions

View File

@ -1,5 +1 @@
import { parameters as docsParams } from './dist/esm/docs/config';
export const parameters = { framework: 'react', ...docsParams };
export { decorators, argTypesEnhancers } from './dist/esm/docs/config';
export * from './dist/esm/preview/config';
export * from './dist/esm/config';

View File

@ -0,0 +1,5 @@
import { parameters as docsParams } from './docs/config';
export const parameters = { framework: 'react', ...docsParams };
export { decorators, argTypesEnhancers } from './docs/config';
export * from './preview/config';