truly-ui
Version:
Web Components for Desktop Applications.
19 lines (13 loc) • 357 B
text/typescript
import { AfterViewInit, Component, OnInit } from '@angular/core';
({
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() {
}
}