This repository has been archived on 2025-03-01. You can view files and clone it, but cannot push or open issues or pull requests.
nightr/client/Nightr/src/app/app.module.ts
2019-04-06 17:52:50 +02:00

32 lines
994 B
TypeScript

import { NgModule, NO_ERRORS_SCHEMA } from "@angular/core";
import { NativeScriptModule } from "nativescript-angular/nativescript.module";
import { AppComponent } from "./app.component";
import { MyLocationButtonComponent } from './component/locationButton/locationButton.component';
// Uncomment and add to NgModule imports if you need to use two-way binding
// import { NativeScriptFormsModule } from "nativescript-angular/forms";
// Uncomment and add to NgModule imports if you need to use the HttpClient wrapper
// import { NativeScriptHttpClientModule } from "nativescript-angular/http-client";
@NgModule({
bootstrap: [
AppComponent
],
imports: [
NativeScriptModule,
],
declarations: [
AppComponent,
MyLocationButtonComponent,
],
providers: [],
schemas: [
NO_ERRORS_SCHEMA
]
})
/*
Pass your application module to the bootstrapModule function located in main.ts to start your app
*/
export class AppModule { }