Fix title

This commit is contained in:
Maksym Pavlenko
2019-06-02 13:55:44 -07:00
parent d67bc99bd2
commit 19bea2f863
+4
View File
@@ -1,4 +1,5 @@
import { Component } from '@angular/core';
import {Title} from '@angular/platform-browser';
@Component({
selector: 'app-root',
@@ -6,4 +7,7 @@ import { Component } from '@angular/core';
styleUrls: ['./app.component.scss']
})
export class AppComponent {
constructor(private titleService: Title) {
titleService.setTitle('Podsync - Turn YouTube channels into podcast feeds');
}
}