group-statistics.module.ts 737 B

123456789101112131415161718192021222324
  1. import { GroupStatisticsComponent } from './group-statistics.component';
  2. import { NgModule } from '@angular/core';
  3. import { CommonModule } from '@angular/common';
  4. import { GroupStatisticsRoutingModule } from './group-statistics-routing.module';
  5. import { ShareModule } from 'src/app/share/share.module';
  6. import { SearchMoreModule } from '../../components/search-more/search-more.module';
  7. import { CustomChangeDateModule } from '../../components/custom-change-date/custom-change-date.module';
  8. @NgModule({
  9. declarations: [
  10. GroupStatisticsComponent,
  11. ],
  12. imports: [
  13. CommonModule,
  14. GroupStatisticsRoutingModule,
  15. ShareModule,
  16. SearchMoreModule,
  17. CustomChangeDateModule,
  18. ]
  19. })
  20. export class GroupStatisticsModule { }