Skip to content

Instantly share code, notes, and snippets.

@fsdevblog
Created February 1, 2021 19:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fsdevblog/fe9d2acf9586fc2fe6bad5f428ba3f31 to your computer and use it in GitHub Desktop.
Save fsdevblog/fe9d2acf9586fc2fe6bad5f428ba3f31 to your computer and use it in GitHub Desktop.
How to use hover in react-jss
const styles = (theme) => ({
  title: {
    color: theme.color,
    '&:hover': {
      color: theme.hoverColor,
    }
  },
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment