Skip to content

Instantly share code, notes, and snippets.

@rodcisal
Created June 28, 2015 18:23
Show Gist options
  • Save rodcisal/29b04ab66326af91e30e to your computer and use it in GitHub Desktop.
Save rodcisal/29b04ab66326af91e30e to your computer and use it in GitHub Desktop.
meteor-react
var MyComponent = React.createClass({
mixins: [ReactMeteor.Mixin],
startMeteorSubscriptions: function() {
Meteor.subscribe("players");
},
// Make sure your component implements this method.
getMeteorState: function() {
return {
playerCount: Players.find().count(),
...
};
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment