-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.module.ts
More file actions
42 lines (41 loc) · 1.52 KB
/
app.module.ts
File metadata and controls
42 lines (41 loc) · 1.52 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
import { provideHttpClient, withInterceptorsFromDi } from "@angular/common/http";
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from "@angular/core";
import { FormsModule } from "@angular/forms";
import { BrowserModule } from "@angular/platform-browser";
import { BrowserAnimationsModule } from "@angular/platform-browser/animations";
import { RouterModule } from "@angular/router";
import {
IgxButtonModule, IgxIconModule, IgxInputGroupModule,
IgxLayoutModule, IgxNavbarModule, IgxNavigationDrawerModule, IgxRippleModule
} from "igniteui-angular";
import { AppRoutingModule } from "./app-routing.module";
import { AppComponent } from "./app.component";
import { HomeComponent } from "./home/home.component";
import { DocsLayoutComponent } from "./index/docs-layout.component";
import { IndexComponent } from "./index/index.component";
import { FallbackComponent } from './fallback/fallback.component';
@NgModule({
bootstrap: [AppComponent],
declarations: [
AppComponent,
HomeComponent,
DocsLayoutComponent,
IndexComponent,
FallbackComponent
],
imports: [AppRoutingModule,
RouterModule,
IgxRippleModule,
IgxNavbarModule,
IgxNavigationDrawerModule,
IgxIconModule,
IgxLayoutModule,
IgxInputGroupModule,
BrowserModule,
BrowserAnimationsModule,
IgxButtonModule,
FormsModule],
providers: [provideHttpClient(withInterceptorsFromDi())],
schemas: [CUSTOM_ELEMENTS_SCHEMA]
})
export class AppModule { }