cc: Change order of report tab imports to match the order in which they're shown

This commit is contained in:
Shreya 2021-07-06 16:23:27 +05:30
parent 231fa6f99f
commit 4d8258ddbd
1 changed files with 1 additions and 1 deletions

View File

@ -4,9 +4,9 @@ import {Col, Nav} from 'react-bootstrap';
import AuthComponent from '../AuthComponent';
import MustRunMonkeyWarning from '../report-components/common/MustRunMonkeyWarning';
import AttackReport from '../report-components/AttackReport';
import RansomwareReport from '../report-components/RansomwareReport';
import SecurityReport from '../report-components/SecurityReport';
import ZeroTrustReport from '../report-components/ZeroTrustReport';
import RansomwareReport from '../report-components/RansomwareReport';
import {extractExecutionStatusFromServerResponse} from '../report-components/common/ExecutionStatus';
import MonkeysStillAliveWarning from '../report-components/common/MonkeysStillAliveWarning';