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

23 lines
461 B
TypeScript
Raw Normal View History

2018-10-05 17:00:54 +02:00
import { Component, ViewEncapsulation, OnInit } from '@angular/core';
import { ActivatedRoute, Router } from '@angular/router';
import { TranslateService } from '@ngx-translate/core';
2018-03-28 15:24:47 +02:00
@Component({
selector: 'app-about',
templateUrl: './about.component.html',
styleUrls: ['./about.component.scss'],
providers: [],
encapsulation: ViewEncapsulation.None
})
export class AboutComponent implements OnInit {
constructor() {
}
ngOnInit() {
}
}