radium is not working

JavaScript
//EXAMPLE USING RADIUM

// IS FALSE
const styles = {
    text: {
      ":hover": {
        color: "red"
      }
    }
  };

// IS TRUE
const style = {
    text: {
      ":hover": {
        color: "red"
      }
    }
  };
Source

Also in JavaScript: