App preview:
Project files:
import React, { useState } from "react";
import "./App.css"
function App(){
const [color, setColor] = useState('darkBlue');
return (
<div className="app" style={{color: color}}>
<h1>Hello World!</h1>
<input
type="input"
onChange={ (event) => {
console.log(event.target.value)
setColor(event.target.value);
}}
/>
</div>
);
}
export default App;
.app{
background-color: lightskyblue;
padding: 20px 10px;
}
Top comments (0)