Mercurial > hg > ugly-duckling
view src/app/app.module.ts @ 29:42c97f604d80
Fix type in tab label.
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Tue, 29 Nov 2016 12:00:07 +0000 |
parents | 3e96bcbfa5c5 |
children | f6ea31a3b1a3 |
line wrap: on
line source
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { FormsModule } from '@angular/forms'; import { HttpModule } from '@angular/http'; import { AppComponent } from './app.component'; import {MaterialModule} from "@angular/material"; import { WaveformComponent } from './waveform/waveform.component'; import { AudioFileOpenComponent } from './audio-file-open/audio-file-open.component'; import { PlaybackControlComponent } from './playback-control/playback-control.component'; @NgModule({ declarations: [ AppComponent, WaveformComponent, AudioFileOpenComponent, PlaybackControlComponent ], imports: [ BrowserModule, FormsModule, HttpModule, MaterialModule.forRoot() ], providers: [ {provide: 'piper-server-uri', useValue: 'ws://not/a/real/path'} ], bootstrap: [AppComponent] }) export class AppModule { }