UNPKG

redux-app-examples

Version:

Examples of redux-app with Angular and React.

11 lines (8 loc) 186 B
import { action } from 'redux-app'; export class CounterState { public value = 0; @action public increment(): void { this.value = this.value + 1; } }