Skip to content

Instantly share code, notes, and snippets.

@nicolasleal570
Last active October 23, 2020 15:46
Show Gist options
  • Save nicolasleal570/71a3e7a202ae6cb8d8b6ba0d119a996f to your computer and use it in GitHub Desktop.
Save nicolasleal570/71a3e7a202ae6cb8d8b6ba0d119a996f to your computer and use it in GitHub Desktop.
TS Todo List Component
@Component({
selector: 'app-todo-list',
templateUrl: './todo-list.component.html',
styleUrls: ['./todo-list.component.scss']
})
export class TodoListComponent implements OnInit {
todos: todo[] = DEMO_TODOS;
constructor() { }
ngOnInit() {
}
clickMarkAsDone(id) {
markAsDoneApi(id);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment