blob: 325812f1f92ea6e46d1c76bfdc62aa46b302a98e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { Component, Input } from '@angular/core';
import { TodoItem } from '../todo-list-page/todo-list.service';
@Component({
selector: 'app-todo-item',
templateUrl: './todo-item.component.html',
styleUrls: ['./todo-item.component.css', '../todo-list-page/todo-list-color-block.css']
})
export class TodoItemComponent {
@Input() item: TodoItem;
}
|