I'd like some help to implement a simple cursor pointer ( hand ) in a card (and affect all child components ) . I can't use directly css, only styled component and/or inline style. my code: All code
I'd like to do some like in my parent component:
<div id="box" style={cursorPointerThatAffecAllChild}>
or similar
Parent component ...
render() {
return (
<div id="box">
<p style={{fontWeight:'800'}}>
My card
</p>
<Child1 > </Child1>
<p>
some text in parent
</p>
</div>
);
...
child
...
return (
<div>
<button > My button on child 1 </button>
<br/><br/><br/>
<span style={{color:'blue'}}> a span inside Child 1 </span>
</div>
);
...

style={{cursor: 'pointer'}}. verify you typed it correctly and that theres no syntax errors.styles.cssfolder in your project?