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

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

export { DoughnutChart };
