aboutsummaryrefslogtreecommitdiff
path: root/Timeline/ClientApp/src/app/todo/todo-item/todo-item.component.ts
blob: b5c51229b3c687624c40fc78cebb37478eb9b6b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { Component, Input } from '@angular/core';

import { TodoItem } from '../todo-item';

@Component({
  selector: 'app-todo-item',
  templateUrl: './todo-item.component.html',
  styleUrls: ['./todo-item.component.css', '../todo-list-color-block.css']
})
export class TodoItemComponent {
  @Input() item!: TodoItem;
}