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