chore: switch coding style to JS standard
[e-mobility-charging-stations-simulator.git] / ui / web / src / components / charging-stations / CSTable.vue
index b4be09912e1c9e2b5a397b163d485b31fa98fec2..1fffaadbd70beeca620935d6324b48b1cb8db2d8 100644 (file)
 </template>
 
 <script setup lang="ts">
-import CSData from './CSData.vue';
-import type { ChargingStationData } from '@/types';
+import CSData from './CSData.vue'
+import type { ChargingStationData } from '@/types'
 
 const props = defineProps<{
-  chargingStations: ChargingStationData[];
-  idTag: string;
-}>();
+  chargingStations: ChargingStationData[]
+  idTag: string
+}>()
 </script>
 
 <style>