client/src/store/sessionRecord.js
changeset 168 ea92f4fe783d
parent 132 906a6c7c7943
--- a/client/src/store/sessionRecord.js	Tue Oct 09 19:07:47 2018 +0200
+++ b/client/src/store/sessionRecord.js	Mon Oct 08 18:35:47 2018 +0200
@@ -1,7 +1,7 @@
-import Immutable from 'immutable';
+import { Record } from '.';
 import { ActionEnum } from '../constants';
 
-export default Immutable.Record({
+export default Record({
   _id: '',
 
   title: '',
@@ -14,4 +14,4 @@
 
   action: ActionEnum.NONE,
 
-}, 'Session');
+});