import uuidV1 from 'uuid/v1'; import * as types from '../constants/actionTypes'; export const addNote = (noteText) => { return { type: types.ADD_NOTE, note: { id: uuidV1(), text: noteText } }; }