client/src/actions/notes-actions.js
author ymh <ymh.work@gmail.com>
Mon, 22 May 2017 14:34:35 +0200
changeset 1 431977d7c9a6
permissions -rw-r--r--
add first react application skeleton

import * as types from './action-types';

import uuidV1 from 'uuid/v1';

export const addNote = (noteText) => {
  return {
    type: types.ADD_NOTE,
    note: {
      id: uuidV1(),
      text: noteText
    }
  };
}