custom-change-date.module.ts 437 B

123456789101112131415161718192021
  1. import { CustomChangeDateComponent } from './custom-change-date.component';
  2. import { NgModule } from '@angular/core';
  3. import { CommonModule } from '@angular/common';
  4. import { ShareModule } from 'src/app/share/share.module';
  5. @NgModule({
  6. declarations: [
  7. CustomChangeDateComponent,
  8. ],
  9. imports: [
  10. CommonModule,
  11. ShareModule,
  12. ],
  13. exports: [
  14. CustomChangeDateComponent,
  15. ]
  16. })
  17. export class CustomChangeDateModule { }