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 } }; }