Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- FlowRouter.route('/', {
- name: 'home',
- subscriptions() {
- console.log("Subscribing to 'Projects' collection")
- this.register('Projects', Meteor.subscribe('Projects'));
- },
- action() {
- mount(MainLayout, {content: <ProjectsComponent projects={Projects.find().fetch()}/> })
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment