ReactLoadableSSRAddon is not a constructor
I get an error while I try to import ReactLoadableSSRAddon
const ReactLoadableSSRAddon = require('react-loadable-ssr-addon')
Expected Behavior
No errors.
Current Behavior
Get the following error
ReactLoadableSSRAddon is not a constructor
Possible Solution
To make it work, I need to import it like that:
const ReactLoadableSSRAddon = require('react-loadable-ssr-addon').default
ReactLoadableSSRAddon is not a constructor
I get an error while I try to import ReactLoadableSSRAddon
const ReactLoadableSSRAddon = require('react-loadable-ssr-addon')Expected Behavior
No errors.
Current Behavior
Get the following error
Possible Solution
To make it work, I need to import it like that:
const ReactLoadableSSRAddon = require('react-loadable-ssr-addon').default