We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2a814f9 + bfe0bb0 commit b868b28Copy full SHA for b868b28
docs/guides/flux.md
@@ -33,8 +33,8 @@ To avoid this, you can do one of three things:
33
```js
34
// RouterContainer.js
35
var _router = null;
36
- exports.set(router => _router = router);
37
- exports.get(() => _router);
+ exports.set = router => _router = router;
+ exports.get = () => _router;
38
```
39
40
0 commit comments