import type { App } from 'vue';
import LineChart from './LineChart.vue';

LineChart.install = (app: App) => {
  app.component('LineChart', LineChart);
};

export { LineChart };
