modules/basket-component/src/basket.module.ts
Basket module that contain component with store basket
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import {NgModule} from "@angular/core";
import {BasketComponent} from "./basket.component";
import { BasketServiceModule } from '@nodeart/basketservice';
import { RouterModule } from '@angular/router';
import { CommonModule } from '@angular/common';
/**
* Basket module that contain component with store basket
*/
@NgModule({
declarations: [
BasketComponent
],
exports: [
BasketComponent
],
imports: [
BasketServiceModule,
CommonModule,
RouterModule
],
providers: [
]
})
export class BasketModule {
}