diff client/src/store/user.js @ 1114:8d12056d602a store-refactoring

shortened store file imports
author Markus Kottlaender <markus@intevation.de>
date Mon, 05 Nov 2018 13:41:53 +0100
parents aa1f5daf6fc9
children a4c74a95c177
line wrap: on
line diff
--- a/client/src/store/user.js	Mon Nov 05 13:36:44 2018 +0100
+++ b/client/src/store/user.js	Mon Nov 05 13:41:53 2018 +0100
@@ -15,7 +15,7 @@
 
 import { HTTP } from "../application/lib/http";
 
-const User = {
+export default {
   namespaced: true,
   state: {
     authenticated: false,
@@ -92,5 +92,3 @@
     }
   }
 };
-
-export default User;