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
Copy file name to clipboardExpand all lines: docs/core/concepts/managers.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ import StackBlitz from '@site/src/components/StackBlitz';
16
16
# Managers and Middleware
17
17
18
18
Reactive Data Client uses the [flux store](https://facebookarchive.github.io/flux/docs/in-depth-overview/) pattern, which is
19
-
characterized by an easy to [understand and debug](../guides/debugging.md) the store's [undirectional data flow](<https://en.wikipedia.org/wiki/Unidirectional_Data_Flow_(computer_science)>). State updates are performed by a [reducer function](https://github.com/reactive/data-client/blob/master/packages/core/src/state/reducer/createReducer.ts#L19).
19
+
characterized by an easy to [understand and debug](../getting-started/debugging.md) the store's [undirectional data flow](<https://en.wikipedia.org/wiki/Unidirectional_Data_Flow_(computer_science)>). State updates are performed by a [reducer function](https://github.com/reactive/data-client/blob/master/packages/core/src/state/reducer/createReducer.ts#L19).
20
20
21
21
<ThemedImage
22
22
alt="Manager flux flow"
@@ -42,7 +42,7 @@ They can also be customized to change core behaviors.
Copy file name to clipboardExpand all lines: packages/react/src/components/DevToolsButton.tsx
+4-1
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,10 @@ export default function DevToolsButton({
33
33
<style>{`.rdc-devtool-btn {text-align:center;}.rdc-devtool-btn > div {visibility:hidden;text-align:center;}.rdc-devtool-btn:hover > div {visibility:visible;}.rdc-devtool-btn a {text-decoration:none;}`}</style>
0 commit comments