refactor: more coding style fixes
[e-mobility-charging-stations-simulator.git] / ui / web / src / router / index.ts
index 1015d92361787bd1405a90a1f38408cfad7acb43..b58a4d2a506d7e5f9c9f94a153bd1d7a7d0061ee 100644 (file)
@@ -5,13 +5,13 @@ const routes: RouteRecordRaw[] = [
   {
     path: '/',
     name: 'charging-stations',
-    component: ChargingStationsView
-  }
+    component: ChargingStationsView,
+  },
 ]
 
 const router = createRouter({
   history: createWebHistory(),
-  routes
+  routes,
 })
 
 export default router