|
|
|
|
|
by danabramov
4351 days ago
|
|
Why I prefer React over Angular: 1. Two-way bindings complicate things because there is no single source of truth. (See http://vimeo.com/92687646 at 30:00) 2. Template/directive separation is superficial, in fact these are single concern and should be together. 3. Separation between `props` and `state`, as well as documenting `props` via `propTypes` encourages very natural modularity. |
|