import React, { useState } from 'react';
const App = () => { const [backgroundColor, setBackgroundColor] = useState('white');
const toggleBackgroundColor = () => { setBackgroundColor(backgroundColor === 'white' ? 'lightblue' : 'white'); };
return ( <div style={{ backgroundColor }}>
Toggle ); };export default App;