Skip to content

Instantly share code, notes, and snippets.

@t4t5
Last active April 3, 2017 13:31
Show Gist options
  • Save t4t5/e841a4b0c20f03bb770aafdbe6d69f9a to your computer and use it in GitHub Desktop.
Save t4t5/e841a4b0c20f03bb770aafdbe6d69f9a to your computer and use it in GitHub Desktop.
glimmer-todo-list-1
// src/ui/components/todo-list/component.ts
import Component from "@glimmer/component";
export default class TodoList extends Component {
items = [
{
text: "Install Glimmer",
isDone: false,
},
{
text: "Build app",
isDone: false,
},
{
text: "Bro down",
isDone: false,
}
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment