UNPKG

smart-webcomponents

Version:

Web Components & Custom Elements for Professional Web Applications

13 lines (9 loc) 288 B
import { NgModule } from '@angular/core'; import { ChipComponent } from './smart.chip'; import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; @NgModule({ declarations: [ChipComponent], schemas: [CUSTOM_ELEMENTS_SCHEMA], exports: [ChipComponent] }) export class ChipModule { }