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