import { FormsModule } from '@angular/forms'; import { NgModule } from '@angular/core'; import { ShareModule } from '../../share-module/share.module'; import { SwitchDemoComponent } from './switch-demo.component'; import { SwitchDemoRoutingModule } from './switch-demo.routing'; import { SwitchModule } from 'projects/switch/src/public-api'; @NgModule({ imports: [FormsModule, ShareModule, SwitchDemoRoutingModule, SwitchModule], exports: [], declarations: [SwitchDemoComponent], providers: [] }) export class SwitchDemoModule {}