summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-os/ngappsrc/src/app/welcome-module/welcome-module.ts
blob: 38409cbf4430c10bd3254cc0fe271caf8dae90d8 (plain)
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
import { NgModule } from '@angular/core';
import {CommonModule, DatePipe} from '@angular/common';
import {BarChartComponent} from './welcome-dashboard/bar-chart/bar-chart.component';
import {NoteComponent} from './welcome-dashboard/note/note.component';
import {PieChartComponent} from './welcome-dashboard/pie-chart/pie-chart.component';
import {WelcomeDashboardComponent} from './welcome-dashboard/welcome-dashboard.component';
import {GridsterModule} from 'angular-gridster2';
import {MatDatepickerModule, MatIconModule, MatListModule, MatTabsModule} from '@angular/material';
import {PagesModule} from '../pages/pages.module';
import {GoogleChartsModule} from 'angular-google-charts';
import {WelcomeRoutingModule} from './welcome-routing.module';
import {WelcomeModuleComponent} from './welcome-module.component';
import {FormsModule} from '@angular/forms';
import { MatGridListModule, MatCardModule, MatMenuModule, MatButtonModule} from '@angular/material';

@NgModule({
    declarations: [ WelcomeDashboardComponent, BarChartComponent,
        NoteComponent,
        PieChartComponent,
        WelcomeModuleComponent
    ],
    imports: [
        CommonModule,
        GridsterModule,
        MatIconModule,
        GoogleChartsModule,
        WelcomeRoutingModule,
        MatTabsModule,
        MatListModule,
        MatGridListModule, 
        MatCardModule, 
        MatMenuModule, 
        MatButtonModule,
        FormsModule,
        MatDatepickerModule,
    ],
})
export class WelcomeModule { }