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.

18 lines
407 B

5 years ago
import { Component, OnInit } from '@angular/core';
import { Title } from '@angular/platform-browser';
5 years ago
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
5 years ago
export class AppComponent implements OnInit {
public constructor(private titleService: Title) { }
5 years ago
ngOnInit(): void {
this.titleService.setTitle('Dslak | New-media arts')
}
5 years ago
}