import { GraphData } from "@/types/graph"; import Chart from "react-apexcharts"; type TimelineGraphProps = { id: string; data: GraphData[]; }; /** * A graph meant to be overlaid on top of a timeline */ export default function TimelineGraph({ id, data }: TimelineGraphProps) { return ( ); }