export const CSSHelpers = { getBackgroundCSS: (imageUrl) => { return 'background-image: url(' + imageUrl + ');' + 'background-size: cover;' + 'background-attachment: fixed;' + 'background-position: center;' + 'background-repeat: no-repeat;'; } }; export const UIHelpers = { toggleReleaseButton: (currentVal, group) => { if (currentVal == group.value) { group.value = ''; return ''; } else { return group.value; } } };