You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
388 B
21 lines
388 B
import { Component, OnInit } from '@angular/core'
|
|
import { Location } from '@angular/common'
|
|
|
|
@Component({
|
|
selector: 'app-about',
|
|
templateUrl: './about.component.html',
|
|
styleUrls: ['./about.component.scss']
|
|
})
|
|
export class AboutComponent implements OnInit {
|
|
|
|
constructor(
|
|
private location: Location
|
|
) { }
|
|
|
|
ngOnInit(): void {
|
|
}
|
|
|
|
back() {
|
|
this.location.back()
|
|
}
|
|
}
|