UNPKG

smart-webcomponents

Version:

Web Components & Custom Elements for Professional Web Applications

13 lines (9 loc) 318 B
import { NgModule } from '@angular/core'; import { FileUploadComponent } from './smart.fileupload'; import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; @NgModule({ declarations: [FileUploadComponent], schemas: [CUSTOM_ELEMENTS_SCHEMA], exports: [FileUploadComponent] }) export class FileUploadModule { }