graycoreio/daffodil

View on GitHub
libs/checkout/state/src/checkout-state.module.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { NgModule } from '@angular/core';

import { DaffCartStateModule } from '@daffodil/cart/state';
import { DaffOrderStateModule } from '@daffodil/order/state';

/**
 * The module for `@daffodil/checkout/state`.
 */
@NgModule({
  imports: [
    DaffCartStateModule,
    DaffOrderStateModule,
  ],
})
export class DaffCheckoutStateModule {}