-
Notifications
You must be signed in to change notification settings - Fork 26
/
app.module.ts
39 lines (29 loc) · 1.03 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
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './components/app/app.component';
import { MainPageComponent } from './components/main-page/main-page.component';
import { ImageValidationComponent } from './components/file-drop-samples/image-validation/image-validation.component';
import { SizeValidationComponent } from './components/file-drop-samples/size-validation/size-validation.component';
import { DisableStylesComponent } from './components/file-drop-samples/disable-styles/disable-styles.component';
import { Ng2FileDropModule } from 'ng2-file-drop';
@NgModule({
imports: [
BrowserModule,
Ng2FileDropModule,
],
declarations: [
AppComponent,
MainPageComponent,
ImageValidationComponent,
SizeValidationComponent,
DisableStylesComponent,
],
bootstrap: [
AppComponent,
],
providers: [
],
entryComponents: [
],
})
export class AppModule { }