We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f185df6 commit a039d63Copy full SHA for a039d63
docs/api/app.md
@@ -64,7 +64,7 @@ Initializes the app by either setting the initial value of the [state](../archit
64
65
- `init: Action`
66
67
- Runs the given [Action](../architecture/action.md).
+ Runs the given [Action](../architecture/actions.md).
68
69
This form is useful when the action can be reused later. The state passed to the action in this case is `undefined`.
70
@@ -79,7 +79,7 @@ Initializes the app by either setting the initial value of the [state](../archit
79
80
- `init: [Action, payload]`
81
82
- Runs the given [Action](../architecture/actio.md) with a payload.
+ Runs the given [Action](../architecture/actions.md) with a payload.
83
84
```js
85
const SetCounter = (_state, n) => ({ counter: n })
0 commit comments