Pārlūkot izejas kodu

Updated read with some thoughts

Snow 8 gadi atpakaļ
vecāks
revīzija
d1005b50b9
1 mainītis faili ar 7 papildinājumiem un 1 dzēšanām
  1. 7 1
      README.md

+ 7 - 1
README.md

@@ -10,4 +10,10 @@ A development server will be ready and listen on `localhost:3000`.
 
 # Components
 - Toggle
-- Tabs
+- Tabs
+- Simple counter managed by Redux
+- Modal
+- Slide Show
+
+# Thoughts
+Managing the state of components in an application is made easy by React. State change triggers event function that will be propagated automatically to children components. Redux reinforces this pattern by enforcing the principle of single source of truth. In the end, with React-Redux model, UI management evolves to fancy manipulation of a single client side data base.