import {Component, OnInit} from '@angular/core';
import {ActivatedRoute} from '@angular/router';

@Component({
    selector: '<%= selector %>',
    templateUrl: './template.html',
    styleUrls: ['./style.less']
})
export default class <%= className %> implements OnInit {
    private data: any = {};
    private otherData: any = {};

    constructor(private route: ActivatedRoute) {
    }

    ngOnInit(): void {
    }
}