blob: 38e368526ee7814ad68976462839712bb7232d40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import { Component, OnInit } from '@angular/core';
import { Router } from '@angular/router';
@Component({
selector: 'app-header',
templateUrl: './header.component.html',
styleUrls: ['./header.component.css']
})
export class HeaderComponent implements OnInit {
constructor(private router: Router) { }
ngOnInit() {
}
// redirect() {
// this.router.navigate(['/packages']);
// }
}
|