You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When invoked through ES6 module, either by:
```
import {setCreateURLPatternCompilerFactory} from 'react-router-component';
setCreateURLPatternCompilerFactory() // <-- this is undefined/null
```
or by
```
import * as Router from 'react-router-component';
Router.setCreateURLPatternCompilerFactory(); // <-- this is `Router` the local copy
```
this of the setter is not module.exports.
0 commit comments