Skip to content

Instantly share code, notes, and snippets.

Kids = new Meteor.Collection('kids');
Parents = new Meteor.Collection('parents');
if (Meteor.isClient) {
Template.hello.kids = function () {
return Kids.find();
};
Meteor.startup(function(){
Meteor.subscribe('parents');