If you're using Redux and connect, this is a nice syntax for creating connected components:
export default connect((state) => state)(React.createClass({
render: function() {
...
this.props.Projects.get("ProjectName") // access the state tree provided by combineReducers
}
})