import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { SamActionsDropdownComponent } from './actions-dropdown.component'; @NgModule({ imports: [CommonModule], declarations: [ SamActionsDropdownComponent ], exports: [ SamActionsDropdownComponent ], }) export class SamActionDropdownModule { } export { SamActionsDropdownComponent } from './actions-dropdown.component';