I want to know how to change the CSS with an input, for example with data from 'Open Weather'. I have already coded a website with just javascript and now I wanna try to learn React but I don't get how to do it. For example with javascript I can easily change the name of the class.
if( description.indexOf('rain') > 0 ) {
document.body.className = 'rainy';
} else if( description.indexOf('cloud') > 0 ) {
document.body.className = 'cloudy';
} else if( description.indexOf('sunny') > 0 ) {
document.body.className = 'sunny';
} else {
document.body.className = 'clear';
}
Maybe someone can help me