Skip to content

Commit 8252df4

Browse files
author
Tor Hovland
committed
Redux DevTools in the docs.
1 parent 93fe6a2 commit 8252df4

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,20 @@ module ActionCreators =
291291

292292
The `task` computation expression requires the NuGet package `TaskBuilder.fs`.
293293

294+
## Redux DevTools
295+
296+
Using the Redux DevTools, you can monitor all actions and state changes going on in your app, time travel to any state in the history, save and load state, and reset the application state.
297+
298+
The DevTools will also take care of importing the current state whenever you reload your app. This is similar to Hot Module Replacement, where you can make changes to the app and have the new version automatically repopulate the application state. This is very productive when working on a part of your app that requires a lot of actions in order to get to.
299+
300+
To connect with the Redux DevTools, all you have to do is to add
301+
302+
```
303+
@ReduxDevTools
304+
```
305+
306+
somewhere, such as in the header of `App.cshtml`.
307+
294308
## Contributing
295309

296310
Blazor Redux is at an experimental stage, and you should expect breaking changes. But I'd be very interested in discussing the design and potential features. Please open an issue if you have any particular topic in mind.

0 commit comments

Comments
 (0)