1 |
e4bc63c3
|
Lukas Cerny
|
import { BrowserModule } from '@angular/platform-browser';
|
2 |
|
|
import { NgModule } from '@angular/core';
|
3 |
|
|
|
4 |
|
|
import { AppRoutingModule } from './app-routing.module';
|
5 |
|
|
import { AppComponent } from './app.component';
|
6 |
|
|
import {HttpClientModule} from '@angular/common/http';
|
7 |
|
|
|
8 |
|
|
@NgModule({
|
9 |
|
|
declarations: [
|
10 |
|
|
AppComponent
|
11 |
|
|
],
|
12 |
|
|
imports: [
|
13 |
|
|
BrowserModule,
|
14 |
|
|
AppRoutingModule,
|
15 |
|
|
HttpClientModule
|
16 |
|
|
],
|
17 |
|
|
providers: [],
|
18 |
|
|
bootstrap: [AppComponent]
|
19 |
|
|
})
|
20 |
|
|
export class AppModule { }
|