redux-app-examples
Version:
Examples of redux-app with Angular and React.
16 lines (14 loc) • 471 B
text/typescript
import { withId } from 'redux-app';
import { CounterState } from './counter';
export class AppState {
public title = "counters with identity";
public subtitle = "using the withId decorator, a \"mini ORM\" feature";
public counter1 = new CounterState();
public counter2 = new CounterState();
public counter3 = new CounterState();
public counter4 = new CounterState();
}