blob: 27d57e2837e0b5789dda934e87fc1ad0b2e3a952 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import { Component, OnInit, Input } from '@angular/core';
import { WorkItem } 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: WorkItem;
}
|