build(ci): run on node 20.x
[e-mobility-charging-stations-simulator.git] / ui / web / src / views / ChargingStationsView.vue
index e0f86dd616dc64abde964742b66b9e984c9ef589..19b6dfe362109619ba04a2dddfaea76032842112 100644 (file)
 <script setup lang="ts">
 import { onMounted, reactive } from 'vue';
 import CSTable from '@/components/charging-stations/CSTable.vue';
-import type { ChargingStationData } from '@/types/ChargingStationType';
+import type { ChargingStationData } from '@/types';
 import Container from '@/components/Container.vue';
 import ReloadButton from '@/components/buttons/ReloadButton.vue';
-import UIClient from '@/composables/UIClient';
+import { UIClient } from '@/composables/UIClient';
 
 const UIClientInstance = UIClient.getInstance();