meteor-utilities / react-list-container

Smart containers for React & Meteor
32 stars 8 forks source link

Update doc ? #7

Open daveeel opened 8 years ago

daveeel commented 8 years ago

The documented way of import no longer works in new version. And that broke my existing code ....

In new version, need to do: import ListContainer from "meteor/utilities:react-list-container"

daveeel commented 8 years ago

Is there any other breaking changes? Got some warning on render function preventing proper rendering. Have to go back to 0.1.9.

SachaG commented 8 years ago

Oh yeah sorry about that, it's import { ListContainer } from ...

SachaG commented 8 years ago

What other issue are you having? There shouldn't be too many breaking changes.

daveeel commented 8 years ago

I used: import ListContainer from "meteor/utilities:react-list-container" in 2 of my source files. Got one being complained. Now changed both to use: import { ListContainer } from "meteor/utilities:react-list-container" Then it's all fine. Thanks :)