#16: ๐ Add Items Using the Service
Adding an item
addItem(item: TodoItem) {
this.todoList.push(item);
}addItem(title: string) {
this.todoListService.addItem({ title });
}Last updated
addItem(item: TodoItem) {
this.todoList.push(item);
}addItem(title: string) {
this.todoListService.addItem({ title });
}Last updated