client/src/store/noteRecord.js
author ymh <ymh.work@gmail.com>
Tue, 28 Aug 2018 18:52:12 +0200
changeset 149 298d0373812e
parent 129 d48946d164c6
child 168 ea92f4fe783d
permissions -rw-r--r--
Correct problem with "findDOMNode" is null

import Immutable from 'immutable';
import { ActionEnum } from '../constants';

export default Immutable.Record({
  _id: '',
  session: '',

  plain: '',
  raw: {},
  html: '',

  startedAt: '',
  finishedAt: '',

  categories: [],

  marginComment: '',
  action: ActionEnum.NONE
}, 'Note');