import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { CoreModule } from '@arrow/bom/core'; import { WptIconModule } from '@arrow/warpaint/icon'; import { WptButtonModule } from '@arrow/warpaint/button'; import { Cart2Service } from './cart2.service'; import { AddedDialogComponent } from './added-dialog/added-dialog.component'; @NgModule({ imports: [CommonModule, CoreModule, WptIconModule, WptButtonModule], declarations: [AddedDialogComponent], providers: [Cart2Service], entryComponents: [AddedDialogComponent] }) export class Cart2Module {}