import React from "react"; type IQRData = { min: number; q1: number; median: number; q3: number; max: number; }; type IQRBoxPlotProps = { data: IQRData; }; export const IQRBoxPlot: React.FC = ({data}) => { const {min, q1, median, q3, max} = data; const scale = (value: number): number => ((value - min) / (max - min)) * 100; return (
Box Plot
) };