radium is not working code example
Example: radium is not working
//EXAMPLE USING RADIUM
// IS FALSE
const styles = {
text: {
":hover": {
color: "red"
}
}
};
// IS TRUE
const style = {
text: {
":hover": {
color: "red"
}
}
};