refactor(ui): add firmware status to UI types
[e-mobility-charging-stations-simulator.git] / ui / web / src / views / ChargingStationsView.vue
index f6bf07bb13c24862b560540e3ebb6747c65fd9b4..19b6dfe362109619ba04a2dddfaea76032842112 100644 (file)
 </template>
 
 <script setup lang="ts">
+import { onMounted, reactive } from 'vue';
+import CSTable from '@/components/charging-stations/CSTable.vue';
+import type { ChargingStationData } from '@/types';
 import Container from '@/components/Container.vue';
 import ReloadButton from '@/components/buttons/ReloadButton.vue';
-import CSTable from '@/components/charging-stations/CSTable.vue';
-
-import { onMounted, reactive } from 'vue';
-import UIClient from '@/composables/UIClient';
-import type { ChargingStationData } from '@/types/ChargingStationType';
+import { UIClient } from '@/composables/UIClient';
 
 const UIClientInstance = UIClient.getInstance();