// Copyright (C) 2021, Mindee. // This program is licensed under the Apache License version 2. // See LICENSE or go to for full license details. import { makeStyles, Theme } from "@material-ui/core"; import { MutableRefObject } from "react"; const useStyles = makeStyles((theme: Theme) => ({ wrapper: {}, image: { height: "35vh", margin: "auto", display: "none", }, })); interface Props { heatMapContainerRef: MutableRefObject; } export default function HeatMap({ heatMapContainerRef }: Props): JSX.Element { const classes = useStyles(); return ( ); }