import React, { FunctionComponent } from 'react'; import { useWorkflowStatisticsLogic } from '@/pages/Home/components/WorkflowStatistics/hooks/useWorkflowStatisticsLogic/useWorkflowStatisticsLogic'; import { CasesPendingManualReview } from '@/pages/Home/components/WorkflowStatistics/components/CasesPendingManualReview/CasesPendingManualReview'; import { ResolvedCasesByMonth } from '@/pages/Home/components/WorkflowStatistics/components/ResolvedCasesByMonth/ResolvedCasesByMonth'; import { ActiveCases } from '@/pages/Home/components/WorkflowStatistics/components/ActiveCases/ActiveCases'; import { AssignedCasesByUser } from '@/pages/Home/components/WorkflowStatistics/components/AssignedCasesByUser/AssignedCasesByUser'; export const WorkflowStatistics: FunctionComponent = () => { const { resolvedCasesByMonth, assignedTags, tags, tagsWithColor, visibleActiveCases, visibleActiveCasesAmount, assignedCasesPendingManualReview, filtersPendingManualReviewWithColor, visibleCasesPendingManualReview, filtersPendingManualReview, visibleCasesPendingManualReviewAmount, assignees, } = useWorkflowStatisticsLogic(); return (
Workflow Statistics
); };