import { BackEndChartType } from '@/components/chart'; import { Datum } from '@antv/ava'; import ChartView from './chart-view'; interface Props { data: { data: Datum[]; describe: string; title: string; type: BackEndChartType; sql: string; }; } function VisChart({ data }: Props) { if (!data) { return null; } return ; } export default VisChart;