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
This works for function components using the `useElmish` hook and class components.
1079
1080
1081
+
## Redux Dev Tools
1082
+
1083
+
If you have the Redux Dev Tools installed in your browser, you can enable support for this extension by setting the `enableDevTools` option to `true` in the `init` function.
1084
+
1085
+
```ts
1086
+
import { init } from"react-elmish";
1087
+
1088
+
init({
1089
+
enableDevTools: true,
1090
+
});
1091
+
```
1092
+
1093
+
Hint: You should only enable this in development mode.
0 commit comments