0

React is so flawed in the sense that it forces you to go a very round about way to implement interaction b/w sibling components..which just gets worse in large scale projects
I had to implement my own event management system for React that worked well in conjunction with Redux.

Comments
  • 0
    is it open source ? :D
  • 0
    @alexbrooklyn nope, but i plan to write an article on how i implemented it, on medium
  • 0
    the components should be isolated, nothing wrong with that
  • 1
    @hinst isolated components are good but interaction between sibling components via props is bad, props should only be used by parent component to set properties on children component.
Add Comment