headergroup.js 243 Bytes RawBlameHistoryPermalink 1 2 3 4 5 6 7 8 9 10 11 12 13 export const cloneElement = (element) => ({ type: 'CLONE_ELEMENT', element }) export const deleteLastElement = () => ({ type: 'DELETE_LAST_ELEMENT' }) export const deleteElement = (element) => ({ type: 'DELETE_ELEMENT', element })