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

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

export { BubbleChart };
