client/src/store/noteRecord.js
changeset 168 ea92f4fe783d
parent 129 d48946d164c6
--- a/client/src/store/noteRecord.js	Tue Oct 09 19:07:47 2018 +0200
+++ b/client/src/store/noteRecord.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: '',
   session: '',
 
@@ -16,4 +16,4 @@
 
   marginComment: '',
   action: ActionEnum.NONE
-}, 'Note');
+});