annotate src/app/app.module.ts @ 6:ee4353d1aeeb
Add skeleton files for waveform component.
author |
Lucas Thompson <dev@lucas.im> |
date |
Wed, 26 Oct 2016 16:57:51 +0100 |
parents |
8d82412dfd50 |
children |
1fcc8c9ec54c |
rev |
line source |
angular-cli@0
|
1 import { BrowserModule } from '@angular/platform-browser';
|
angular-cli@0
|
2 import { NgModule } from '@angular/core';
|
angular-cli@0
|
3 import { FormsModule } from '@angular/forms';
|
angular-cli@0
|
4 import { HttpModule } from '@angular/http';
|
angular-cli@0
|
5
|
angular-cli@0
|
6 import { AppComponent } from './app.component';
|
dev@1
|
7 import { SimpleFormComponent } from './simple-form/simple-form.component';
|
dev@1
|
8 import {MailService} from "./mail.service";
|
dev@3
|
9 import {MaterialModule} from "@angular/material";
|
dev@5
|
10 import { WaveformComponent } from './waveform/waveform.component';
|
angular-cli@0
|
11
|
angular-cli@0
|
12 @NgModule({
|
angular-cli@0
|
13 declarations: [
|
dev@1
|
14 AppComponent,
|
dev@5
|
15 SimpleFormComponent,
|
dev@5
|
16 WaveformComponent
|
angular-cli@0
|
17 ],
|
angular-cli@0
|
18 imports: [
|
angular-cli@0
|
19 BrowserModule,
|
angular-cli@0
|
20 FormsModule,
|
dev@3
|
21 HttpModule,
|
dev@3
|
22 MaterialModule.forRoot()
|
angular-cli@0
|
23 ],
|
dev@1
|
24 providers: [
|
dev@1
|
25 MailService,
|
dev@1
|
26 {provide: 'piper-server-uri', useValue: 'ws://not/a/real/path'}
|
dev@1
|
27 ],
|
angular-cli@0
|
28 bootstrap: [AppComponent]
|
angular-cli@0
|
29 })
|
dev@1
|
30 export class AppModule {
|
dev@1
|
31
|
dev@1
|
32 }
|