UNPKG

redux-app-examples

Version:

Examples of redux-app with Angular and React.

11 lines (10 loc) 298 B
import { Component, Input } from '@angular/core'; import { Counter } from '../viewModel'; @Component({ selector: 'app-counter', templateUrl: './counter.component.html' }) export class CounterComponent { @Input() public title: string; @Input() public counter: Counter; }