import ngModule from '../module';
import ModuleMain from 'salix/components/module-main';

export default class Claim extends ModuleMain {
    constructor($element, $) {
        super($element, $);
    }
    async $onInit() {
        this.$state.go('home');
        window.location.href = await this.vnApp.getUrl(`claim/`);
    }
}

ngModule.vnComponent('vnClaim', {
    controller: Claim,
    template: require('./index.html')
});