UNPKG

nativescript-login

Version:
26 lines (22 loc) 561 B
import { NgModule, NO_ERRORS_SCHEMA } from "@angular/core"; import { NativeScriptModule } from "nativescript-angular/nativescript.module"; import { AppRoutingModule } from "./app.routing"; import { LoginAppComponent } from "./app.component"; @NgModule({ bootstrap: [ LoginAppComponent ], imports: [ NativeScriptModule, AppRoutingModule ], declarations: [ LoginAppComponent, ], providers: [ ], schemas: [ NO_ERRORS_SCHEMA ] }) export class AppModule { }