import { ChartSwitch } from '@/components/report/chart'; import { ScrollArea } from '@/components/ui/scroll-area'; import type { IChartProps } from '@openpanel/validation'; import { ModalContent, ModalHeader } from './Modal/Container'; type Props = { chart: IChartProps; }; const OverviewChartDetails = (props: Props) => { return (
); }; export default OverviewChartDetails;