Guest User

Untitled

a guest
Aug 14th, 2016
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. FlowRouter.route('/', {
  2.   name: 'home',
  3.   subscriptions() {
  4.     console.log("Subscribing to 'Projects' collection")
  5.     this.register('Projects', Meteor.subscribe('Projects'));
  6.   },
  7.   action() {
  8.     mount(MainLayout, {content: <ProjectsComponent projects={Projects.find().fetch()}/> })
  9.   }
  10. });
Advertisement
Add Comment
Please, Sign In to add comment