-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.module.ts
More file actions
51 lines (48 loc) · 1.7 KB
/
app.module.ts
File metadata and controls
51 lines (48 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import {FormsModule} from "@angular/forms";
import { AppRoutingModule } from './app-routing.module';
import {RouterModule} from '@angular/router';
import { AppComponent } from './app.component';
import { WeekPipe } from './pipes/week.pipe';
import { ConfigValues } from './services/config.service';
import { HttpModule } from '@angular/http';
import { AppCommon } from './shared/common';
import { TradesService } from './services/trade.service';
import { SummaryComponent } from './summary/summary.component';
import {MatDatepickerModule} from '@angular/material/datepicker';
import { MatFormFieldModule } from '@angular/material/form-field';
import { MatNativeDateModule, MatInputModule } from '@angular/material';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { DateComponent } from './date/date.component';
import {MatProgressSpinnerModule} from '@angular/material/progress-spinner';
import { MatCardModule } from '@angular/material';
import { ChartsModule } from 'ng2-charts'
import { PieChartComponent } from './pie-chart/pie-chart.component';
@NgModule({
declarations: [
AppComponent,
WeekPipe,
SummaryComponent,
DateComponent,
PieChartComponent
],
imports: [
BrowserModule,
AppRoutingModule,
FormsModule,
RouterModule,
HttpModule,
MatDatepickerModule,
MatFormFieldModule,
MatNativeDateModule,
MatInputModule,
BrowserAnimationsModule,
MatProgressSpinnerModule,
MatCardModule,
ChartsModule
],
providers: [ConfigValues,AppCommon,TradesService],
bootstrap: [AppComponent]
})
export class AppModule { }