15 lines
525 B
TypeScript
15 lines
525 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { UploadFileComponent } from './upload-file.component';
|
|
import { DragDropFileUploadDirective } from './drag-drop-file-upload.directive';
|
|
import { MatIconModule } from '@angular/material/icon';
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
const components = [UploadFileComponent, DragDropFileUploadDirective];
|
|
|
|
@NgModule({
|
|
declarations: [...components],
|
|
exports: [...components],
|
|
imports: [MatIconModule, CommonModule],
|
|
})
|
|
export class IqserUploadFileModule {}
|