UNPKG

redux-app-examples

Version:

Examples of redux-app with Angular and React.

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