refactor: refine prettier configuration
[e-mobility-charging-stations-simulator.git] / ui / web / src / router / index.ts
index b58a4d2a506d7e5f9c9f94a153bd1d7a7d0061ee..1015d92361787bd1405a90a1f38408cfad7acb43 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