UNPKG

redux-app-examples

Version:

Examples of redux-app with Angular and React.

16 lines (12 loc) 374 B
import { Component, EventEmitter, Output } from '@angular/core'; @Component({ selector: 'add-todo', templateUrl: './add-todo.component.html' }) export class AddTotoComponent { public text: string; @Output() public onAddTodo = new EventEmitter<string>(); public addTodoClick(): void { this.onAddTodo.emit(this.text); } }