UNPKG

smart-webcomponents

Version:

Web Components & Custom Elements for Professional Web Applications

13 lines (9 loc) 298 B
import { NgModule } from '@angular/core'; import { WindowComponent } from './smart.window'; import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; @NgModule({ declarations: [WindowComponent], schemas: [CUSTOM_ELEMENTS_SCHEMA], exports: [WindowComponent] }) export class WindowModule { }