import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { DropDownComponent } from './ui/drop-down/drop-down.component'; const COMPONENTS = [ DropDownComponent ]; @NgModule({ imports: [ CommonModule ], declarations: COMPONENTS, exports: COMPONENTS }) export class SharedModule {}