Yea, as douche points out, I was making a play off his username. Also, I wasn't aware the term douche applied to only white men. It certainly has no racial or gender connotation where I live in Canada.
todo.view = function() {
return m("html", [
m("body", [
m("input"),
m("button", "Add"),
m("table", [
m("tr", [
m("td", [
m("input[type=checkbox]")
]),
m("td", "task description"),
])
])
])
]);
};