Projekt

Obecné

Profil

Stáhnout (544 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
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
import { MenuComponent } from './menu/menu.component';
8

    
9
@NgModule({
10
  declarations: [
11
    AppComponent,
12
    MenuComponent
13
  ],
14
  imports: [
15
    BrowserModule,
16
    AppRoutingModule,
17
    HttpClientModule
18
  ],
19
  providers: [],
20
  bootstrap: [AppComponent]
21
})
22
export class AppModule { }
(5-5/7)