argos/dmp-frontend/src/app/ui/about/about.component.ts

23 lines
514 B
TypeScript
Raw Normal View History

import { HttpClient } from '@angular/common/http';
2019-01-18 18:03:45 +01:00
import { Component, OnInit } from '@angular/core';
import { MatomoService } from '@app/core/services/matomo/matomo-service';
2019-01-18 18:03:45 +01:00
@Component({
selector: 'app-about-componet',
templateUrl: './about.component.html',
styleUrls: ['./about.component.scss']
2019-01-18 18:03:45 +01:00
})
export class AboutComponent implements OnInit {
constructor(
private httpClient: HttpClient,
private matomoService: MatomoService) {
}
2019-01-18 18:03:45 +01:00
ngOnInit() {
this.matomoService.trackPageView('About');
}
2019-01-18 18:03:45 +01:00
}