client/src/store/noteRecord.js
author ymh <ymh.work@gmail.com>
Thu, 22 Jun 2017 12:51:11 +0200
changeset 76 b4f9114b3a86
parent 62 b2514a9bcd49
child 78 49c5ea36d0a4
permissions -rw-r--r--
Use sortBy which is more compact

import Immutable from 'immutable';

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

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

  startedAt: '',
  finishedAt: '',

  categories: []
}, 'Note');