UNPKG

truly-ui

Version:
19 lines (13 loc) 357 B
import { AfterViewInit, Component, OnInit } from '@angular/core'; @Component({ selector: 'app-getting-started', templateUrl: './getting-started.component.html', styleUrls: ['./getting-started.component.scss'] }) export class GettingStarted implements OnInit, AfterViewInit { title = 'app works!'; ngOnInit() { } ngAfterViewInit() { } }