simple-todos.js 216 B

12345678910
  1. if (Meteor.isClient) {
  2. // This code only runs on the client
  3. Template.body.helpers({
  4. tasks: [
  5. { text: "This is task 1" },
  6. { text: "This is task 2" },
  7. { text: "This is task 3" }
  8. ]
  9. });
  10. }