UNPKG

redux-app-examples

Version:

Examples of redux-app with Angular and React.

16 lines (13 loc) 285 B
import { action } from 'redux-app'; export enum Route { MainPage, GladiatorPage, ArenaPage } export class Router { public currentRoute = Route.MainPage; @action public navigateTo(route: Route): void { this.currentRoute = route; } }