meteor__simple-todos/simple-todos.js
2015-09-10 13:40:45 +02:00

10 lines
216 B
JavaScript

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