You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
awesome/src/app/app.module.ts

46 lines
1.5 KiB
TypeScript

import { NgModule } from '@angular/core';
import { BrowserModule, HammerModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { MoviesComponent } from './movies/movies.component';
import { IgxButtonModule, IgxRippleModule, IgxTabsModule, IgxCardModule, IgxIconModule, IgxSelectModule, IgxInputGroupModule, IgxDatePickerModule, IgxListModule, IgxAvatarModule, IgxNavigationDrawerModule, IgxToggleModule, IgxDropDownModule } from 'igniteui-angular';
import { FormsModule } from '@angular/forms';
import { MovieComplexComponent } from './movie-complex/movie-complex.component';
import { MyPurchasesComponent } from './my-purchases/my-purchases.component';
import { HttpClientModule } from '@angular/common/http';
@NgModule({
declarations: [
AppComponent,
MoviesComponent,
MovieComplexComponent,
MyPurchasesComponent
],
imports: [
BrowserModule,
HammerModule,
AppRoutingModule,
BrowserAnimationsModule,
IgxButtonModule,
IgxRippleModule,
IgxTabsModule,
IgxCardModule,
IgxIconModule,
IgxSelectModule,
IgxInputGroupModule,
IgxDatePickerModule,
IgxListModule,
IgxAvatarModule,
FormsModule,
IgxNavigationDrawerModule,
IgxToggleModule,
IgxDropDownModule,
HttpClientModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {
}