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

// Modules
import { ShopShortDatesRoutingModule } from './shop-short-dates-routing.module';
import { SharedModule } from 'src/app/shared-module/shared-module.module';

// Components
import { ShopShortDatesComponent } from './components/shop-short-dates/shop-short-dates.component';


@NgModule({
  declarations: [
    ShopShortDatesComponent
  ],
  imports: [
    CommonModule,
    ShopShortDatesRoutingModule,
    SharedModule
  ]
})
export class ShopShortDatesModule { }
