Global props
React changes the behavior of some global props:
the style prop
<div
style={{
border: "2px solid black",
borderRadius: "5px",
width: "100px",
height: "200px",
color: "black",
display: "inline-block",
backgroundColor: "beige",
}}
>
{/* ... */}
</div>