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

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

export { BarChart };
