-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.module.ts
37 lines (36 loc) · 1.26 KB
/
app.module.ts
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
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { HttpClientModule } from '@angular/common/http';
import { GraphqlModule } from './@core/modules/graphql/graphql.module';
import { CharactersComponent } from './@pages/characters/characters.component';
import { VotesComponent } from './@pages/votes/votes.component';
import { CardComponent } from './@core/components/card/card.component';
import { TruncatePipe } from './@core/pipes/truncate.pipe';
import { LoadingComponent } from './@core/components/loading/loading.component';
import { NavbarComponent } from './@core/components/navbar/navbar.component';
import { ChartsModule } from 'ng2-charts';
import { BarChartComponent } from './@core/components/bar-chart/bar-chart.component';
@NgModule({
declarations: [
AppComponent,
CharactersComponent,
VotesComponent,
CardComponent,
TruncatePipe,
LoadingComponent,
NavbarComponent,
BarChartComponent
],
imports: [
BrowserModule,
AppRoutingModule,
HttpClientModule,
GraphqlModule,
ChartsModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }