client/src/store/noteRecord.js
author Alexandre Segura <mex.zktk@gmail.com>
Mon, 12 Jun 2017 18:12:38 +0200
changeset 29 4cfeabef7d5e
parent 26 930e486ad0a8
child 58 f16a080e0bc4
permissions -rw-r--r--
Store data in PouchDB. - Introduce redux-saga to perform async actions. - Refactor actions to be async.

import Immutable from 'immutable';

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

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

  startedAt: '',
  finishedAt: '',

  categories: []
});