[SECARSP-311] Component for getting device reports in the time interval was implemented
[platform/core/security/suspicious-activity-monitor.git] / dashboard / src / app / modals / reports / reports-modal.module.ts
1 import { NgModule } from '@angular/core';
2 import { ThemeModule } from '../../@theme/theme.module';
3 import { ReportsModalComponent } from './reports-modal.component';
4 import { DateIntervalModule } from '../../components/date-interval/date-interval.module';
5 import { ReportService } from '../../services/report.service';
6
7 @NgModule({
8   imports: [
9     ThemeModule,
10     DateIntervalModule,
11   ],
12   declarations: [
13     ReportsModalComponent,
14   ],
15   providers: [
16     ReportService,
17   ],
18   exports: [
19     ReportsModalComponent,
20   ],
21 })
22 export class ReportsModalModule { }