// Goal of this file is to re-create a TODO app from http://todomvc.com // -- Entities entity Task { description :: string, isDone :: boolean } // -- App and pages app todoMVC { title: "ToDo MVC" } page Main { route: "/", style: {=css div { color: green; } .mainContainer { display: flex; flex-direction: column; align-items: center; } .taskListContainer { width: 60%; } css=}, content: {=jsx