123456789101112131415161718192021 |
- import { CustomChangeDateComponent } from './custom-change-date.component';
- import { NgModule } from '@angular/core';
- import { CommonModule } from '@angular/common';
- import { ShareModule } from 'src/app/share/share.module';
- @NgModule({
- declarations: [
- CustomChangeDateComponent,
- ],
- imports: [
- CommonModule,
- ShareModule,
- ],
- exports: [
- CustomChangeDateComponent,
- ]
- })
- export class CustomChangeDateModule { }
|