@nativescript/template-tab-navigation-ng
Version:
Tabbed interface template
16 lines (13 loc) • 355 B
text/typescript
import { Component, OnInit } from '@angular/core'
({
selector: 'Browse',
templateUrl: './browse.component.html',
})
export class BrowseComponent implements OnInit {
constructor() {
// Use the component constructor to inject providers.
}
ngOnInit(): void {
// Use the "ngOnInit" handler to initialize data for the view.
}
}