import { useState } from "react"; import { BenchmarkBar, BenchmarkCategory, BenchmarkNumberOfModules, } from "./PackBenchmarks"; import { BenchmarksGraph } from "./PackBenchmarksGraph"; import { PackBenchmarksPicker } from "./PackBenchmarksPicker"; export function DocsBenchmarksGraph(props: { bars: BenchmarkBar[]; category: BenchmarkCategory; }) { const [numberOfModules, setNumberOfModules] = useState("1000"); return (
); }