@nativescript/template-tab-navigation-ng
Version:
Tabbed interface template
16 lines (13 loc) • 324 B
text/typescript
import { Component, OnInit } from '@angular/core'
({
selector: 'ns-app',
templateUrl: 'app.component.html',
})
export class AppComponent implements OnInit {
constructor() {
// Use the component constructor to inject providers.
}
ngOnInit(): void {
// Init your component properties here.
}
}