We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 189ad66 commit ef5b22eCopy full SHA for ef5b22e
app/components/button.jsx
@@ -24,13 +24,10 @@ function Button(props) {
24
} = props;
25
26
const [isDisabled, setIsDisabled] = useState(disabled);
27
- const [parentIsHovered, setParentIsHovered] = useState(false);
28
29
const classes = buttonStyles();
30
const combinedClassName = cx(classes.buttonBase, className, { 'hover': parentIsHovered });
31
32
- console.log(combinedClassName)
33
-
34
return (
35
<button
36
className={combinedClassName}
0 commit comments