Skip to content

Commit 343b568

Browse files
authored
Merge pull request #2768 from sahandsn/patch-5
Update part6a.md
2 parents 9cee78a + 1e0e163 commit 343b568

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/content/6/en/part6a.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ So far, we have followed the state management conventions recommended by React.
1111

1212
### Flux-architecture
1313

14-
Already years ago Facebook developed the [Flux](https://facebook.github.io/flux/docs/in-depth-overview/)- architecture to make state management of React apps easier. In Flux, the state is separated from the React components and into its own <i>stores</i>.
14+
Already years ago Facebook developed the [Flux]()- architecture to make state management of React apps easier. In Flux, the state is separated from the React components and into its own <i>stores</i>.
1515
State in the store is not changed directly, but with different <i>actions</i>.
1616

1717
When an action changes the state of the store, the views are rerendered:
1818

19-
![diagram action->dispatcher->store->view](https://facebook.github.io/flux/img/overview/flux-simple-f8-diagram-1300w.png)
19+
![diagram action->dispatcher->store->view]()
2020

2121
If some action on the application, for example pushing a button, causes the need to change the state, the change is made with an action.
2222
This causes re-rendering the view again:
2323

24-
![same diagram as above but with action looping back](https://facebook.github.io/flux/img/overview/flux-simple-f8-diagram-with-client-action-1300w.png)
24+
![same diagram as above but with action looping back]()
2525

2626
Flux offers a standard way for how and where the application's state is kept and how it is modified.
2727

0 commit comments

Comments
 (0)