<div id="root"></div>
body {
height: 100vh;
margin: 0;
display: grid;
place-items: center;
}
.box {
width: 300px;
h1 {
font-size: 20px;
margin: 0 0 1rem 0;
}
}
View Compiled
import React from 'https://esm.sh/react@18.2.0'
import ReactDOM from 'https://esm.sh/react-dom@18.2.0'
const baseStyle = { backgroundColor: 'blue', color: 'white', width: '100%' };
const App = () => {
const [clicked, setClicked] = React.useState(false);
const style = clicked
? Object.assign({}, baseStyle, { background: 'red' })
: baseStyle;
return(
<div className="box"
style={style}
onClick={() => {
setClicked(v => !v);
}}
>
{JSON.stringify([style, clicked])}
</div>
);
}
ReactDOM.render(<App />,
document.getElementById("root"))
View Compiled
This Pen doesn't use any external JavaScript resources.