15 lines
400 B
TypeScript
15 lines
400 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { Title } from '@angular/platform-browser';
|
|
|
|
@Component({
|
|
selector: 'app-root',
|
|
templateUrl: './app.component.html',
|
|
styleUrls: ['./app.component.css'],
|
|
})
|
|
export class AppComponent implements OnInit {
|
|
constructor(private titleService: Title) {}
|
|
|
|
ngOnInit(): void {
|
|
this.titleService.setTitle('Recipe Manager | Tao Bin');
|
|
}
|
|
}
|