import { injectable } from 'inversify'; import LineChartView from './LineChartView'; import LineChartConfigPanelSchema from './config-panel-schema'; import type { LineChartComponentPlugin } from './types'; @injectable() export default class LineChart implements LineChartComponentPlugin { title = 'Line Chart'; type = 'line-chart'; icon = ''; configPanelSchema = LineChartConfigPanelSchema; View = LineChartView; }