UNPKG

tns-template-blank-ng

Version:
17 lines (13 loc) 347 B
import { Component, OnInit } from "@angular/core"; @Component({ selector: "Home", templateUrl: "./home.component.html" }) export class HomeComponent implements OnInit { constructor() { // Use the component constructor to inject providers. } ngOnInit(): void { // Init your component properties here. } }