import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { OSwitchComponent } from './o-switch.component'; @NgModule({ declarations: [OSwitchComponent], imports: [CommonModule], exports: [OSwitchComponent], }) export class OSwitchModule {}