Skip to content

Instantly share code, notes, and snippets.

View BartusZak's full-sized avatar
🎯
Focusing

BartusZak BartusZak

🎯
Focusing
View GitHub Profile
@pniel-cohen
pniel-cohen / app.module.ts
Last active November 18, 2019 20:18 — forked from katowulf/app.component.ts
Dynamically set page title based on active route in Angular 4
import ...
@NgModule({
...
providers: [ TitleService ],
})
export class AppModule {
constructor(titleService: TitleService) {
titleService.init();
}