forked from wangdicoder/angular-material-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.module.ts
73 lines (70 loc) · 2.77 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { routing } from './app.routes';
import { MatButtonModule, MatRadioModule, MatInputModule, MatMenuModule, MatCheckboxModule } from '@angular/material';
import { AppComponent } from './app.component';
import { SidebarComponent } from './sidebar/sidebar.component';
import { HomeComponent } from './dashboard/home/home.component';
import { ProfileComponent } from './dashboard/profile/profile.component';
import 'hammerjs';
import { NavbarComponent } from './shared/navbar/navbar.component';
import { FigurecardComponent } from './shared/figurecard/figurecard.component';
import { ImagecardComponent } from './shared/imagecard/imagecard.component';
import { TableComponent } from './dashboard/table/table.component';
import { NotificationComponent } from './dashboard/notification/notification.component';
import { MsgIconBtnComponent } from './shared/msgiconbtn/msgiconbtn.component';
import { SweetAlertComponent } from './dashboard/sweetalert/sweetalert.component';
import { LoginComponent } from './page/login/login.component';
import { RootComponent } from './dashboard/root/root.component';
import { RegisterComponent } from './page/register/register.component';
import { LockComponent } from './page/lock/lock.component';
import { HeaderComponent } from './shared/header/header.component';
import { FooterComponent } from './shared/footer/footer.component';
import { SettingsComponent } from './dashboard/settings/settings.component';
import { PriceTableComponent } from './dashboard/component/pricetable/pricetable.component';
import { PanelsComponent } from './dashboard/component/panels/panels.component';
import { SettingsService } from './services/settings.service';
import { WizardComponent } from './dashboard/component/wizard/wizard.component';
@NgModule({
declarations: [
AppComponent,
SidebarComponent,
HomeComponent,
ProfileComponent,
NavbarComponent,
FigurecardComponent,
ImagecardComponent,
TableComponent,
NotificationComponent,
MsgIconBtnComponent,
SweetAlertComponent,
LoginComponent,
RootComponent,
RegisterComponent,
LockComponent,
HeaderComponent,
FooterComponent,
SettingsComponent,
PriceTableComponent,
PanelsComponent,
WizardComponent
],
imports: [
BrowserModule,
FormsModule,
HttpModule,
routing,
BrowserAnimationsModule,
MatButtonModule,
MatRadioModule,
MatInputModule,
MatMenuModule,
MatCheckboxModule
],
providers: [SettingsService],
bootstrap: [AppComponent]
})
export class AppModule { }