UNPKG

@nativescript/template-tab-navigation-ng

Version:
13 lines (10 loc) 411 B
import { NgModule, NO_ERRORS_SCHEMA } from '@angular/core' import { NativeScriptCommonModule } from '@nativescript/angular' import { SearchRoutingModule } from './search-routing.module' import { SearchComponent } from './search.component' @NgModule({ imports: [NativeScriptCommonModule, SearchRoutingModule], declarations: [SearchComponent], schemas: [NO_ERRORS_SCHEMA], }) export class SearchModule {}