import React from 'react'; export const getGradient = () => { let selectedStyle = Number(localStorage.getItem("selectedStyle")); if (!selectedStyle) { selectedStyle = 0; } const gradientsBlock = [ , , , ]; return gradientsBlock[selectedStyle]; }