redux-app-examples
Version:
Examples of redux-app with Angular and React.
22 lines (17 loc) • 517 B
text/typescript
import { Component } from '@angular/core';
import { ReduxApp } from 'redux-app';
import { GladiatorPage } from '../../viewModel';
var debounce = require('lodash.debounce');
({
selector: 'gladiator-page',
templateUrl: './gladiatorPage.component.html'
})
export class GladiatorPageComponent {
public nameChanged = debounce((name: string) => {
this.vm.setName(name);
}, 300);
public vm = ReduxApp.getComponent(GladiatorPage);
constructor() {
this.vm.reset();
}
}