client/src/store/noteRecord.js
author ymh <ymh.work@gmail.com>
Wed, 05 Sep 2018 12:27:52 +0200
changeset 155 e55ae84508bf
parent 129 d48946d164c6
child 168 ea92f4fe783d
permissions -rw-r--r--
Clean CreateSession component and remove trace of previous create session button

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');