// Angular Core
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';

// Modules
import { PaymentPortalRoutingModule } from './payment-portal-routing.module';
import { SharedModule } from 'src/app/shared-module/shared-module.module';

// Components
import { PaymentPortalComponent } from './components/payment-portal/payment-portal.component';


@NgModule({
  declarations: [
    PaymentPortalComponent
  ],
  imports: [
    CommonModule,
    PaymentPortalRoutingModule,
    SharedModule
  ]
})
export class PaymentPortalModule { }

