123456789101112131415161718192021222324 |
- import { GroupStatisticsComponent } from './group-statistics.component';
- import { NgModule } from '@angular/core';
- import { CommonModule } from '@angular/common';
- import { GroupStatisticsRoutingModule } from './group-statistics-routing.module';
- import { ShareModule } from 'src/app/share/share.module';
- import { SearchMoreModule } from '../../components/search-more/search-more.module';
- import { CustomChangeDateModule } from '../../components/custom-change-date/custom-change-date.module';
- @NgModule({
- declarations: [
- GroupStatisticsComponent,
- ],
- imports: [
- CommonModule,
- GroupStatisticsRoutingModule,
- ShareModule,
- SearchMoreModule,
- CustomChangeDateModule,
- ]
- })
- export class GroupStatisticsModule { }
|