I have an API response in string
"{"div":{"display": "flex","flexDirection": "column","alignItems":"center","fontFamily":"Helvetica Neue"},"a":{"fontSize": 16, "textAlign": "center","fontWeight":"bold","color":"#324F85"},"p":{"fontSize": 34,"textAlign":"center","color": "#7f8f96d"},"h5": {"fontWeight": "normal","fontSize": 18,"textAlign":"center"}}"
I want to convert the string to object like
{div:{display: 'flex',flexDirection: 'column',alignItems: 'center',fontFamily:'Helvetica Neue'},a: {fontSize: 16,textAlign: 'center',fontWeight: 'bold',color: '#324F85'}, p:{fontSize: 34,textAlign: 'center',color: '#7f8f96d6'},h5: { fontWeight: 'normal',fontSize: 18,textAlign: 'center'}}