Skip to content
Snippets Groups Projects
app.component.ts 375 B
Newer Older
import { Component, OnInit } from '@angular/core';
import { Router } from '@angular/router';

@Component({
    selector: 'app-root',
    templateUrl: './app.component.html',
    styleUrls: ['./app.component.scss']
})
export class AppComponent implements OnInit {
    constructor(public router: Router) { }
    ngOnInit() {
        //this.router.navigate(['/login']);
    }
}