IO-2122 Add time ticket report.

This commit is contained in:
Patrick Fic
2022-12-09 08:09:53 -08:00
parent dad3dc9e42
commit 4c42522f3a
6 changed files with 38 additions and 9 deletions

View File

@@ -1,20 +1,17 @@
import { RadarChartOutlined } from "@ant-design/icons";
import { Popover, Space } from "antd";
import React, { useMemo } from "react";
import { useTranslation } from "react-i18next";
import { connect } from "react-redux";
import {
PolarAngleAxis,
Legend, PolarAngleAxis,
PolarGrid,
PolarRadiusAxis,
Radar,
Legend,
RadarChart,
Tooltip,
Radar, RadarChart,
Tooltip
} from "recharts";
import { createStructuredSelector } from "reselect";
import { selectBodyshop } from "../../redux/user/user.selectors";
import { RadarChartOutlined } from "@ant-design/icons";
import { useTranslation } from "react-i18next";
import { load } from "@fingerprintjs/fingerprintjs";
const mapStateToProps = createStructuredSelector({
bodyshop: selectBodyshop,
});