mirror of
https://github.com/DerTyp7/osm-routing-angular.git
synced 2025-10-29 12:32:09 +01:00
24 lines
641 B
TypeScript
24 lines
641 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
import { HttpClientModule } from '@angular/common/http';
|
|
import { AppComponent } from './app.component';
|
|
import { SearchComponent } from './search/search.component';
|
|
import { MapComponent } from './map/map.component';
|
|
import { RouteListComponent } from './route-list/route-list.component';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
AppComponent,
|
|
SearchComponent,
|
|
MapComponent,
|
|
RouteListComponent,
|
|
],
|
|
imports: [
|
|
BrowserModule,
|
|
HttpClientModule
|
|
],
|
|
providers: [],
|
|
bootstrap: [AppComponent]
|
|
})
|
|
export class AppModule { }
|