RobinBuschmann / react.di

Dependency injection for react based upon inversify.
97 stars 5 forks source link

Implement possibility to nest multiple components in provider component #5

Closed RobinBuschmann closed 7 years ago

RobinBuschmann commented 7 years ago

... so that the following does work:

<Provider>
  <div></div>
  <div></div>
</Provider>

-->

<Module>
  <div></div>
  <div></div>
</Module>