import { useSpring, animated } from 'react-spring';
Crash with:

I have discovered the issue on https://material-ui.com/components/modal/#transitions.
I expect the "module" version to only differ from the "main" version by only the import syntax (require vs import).
Codesandbox doesn't work on IE 11: https://github.com/codesandbox/codesandbox-client/issues/1187.
react-spring v8.0.27Related: https://github.com/react-spring/react-spring/issues/248, https://github.com/react-spring/react-spring/issues/552.
The library comes as an es-module compiled for evergreen browsers with the following browserlist config: >1%, not dead, not ie 11, not op_mini all. If you need to support legacy targets or deal with targets that don't support modules, you can use the commonJS export by simply appending .cjs to your imports.
Ok
Most helpful comment
https://www.react-spring.io/
Ok