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

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

export { RadarChart };
