UNPKG

redux-app-examples

Version:

Examples of redux-app with Angular and React.

18 lines (12 loc) 346 B
import { action } from 'redux-app'; export class CounterState { private static countersId = 1; public id = CounterState.countersId++; public value = 0; @action public increment(counterId: number): void { if (counterId !== this.id) return; this.value = this.value + 1; } }