client/src/store/noteRecord.js
author salimr <riwad.salim@yahoo.fr>
Thu, 16 Aug 2018 22:32:36 +0200
changeset 146 4f4bb2b3ef39
parent 129 d48946d164c6
child 168 ea92f4fe783d
permissions -rw-r--r--
Removing Modal from react-bootstrap and adding react-modal

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