function App() { return ( <div> <h1 style={{ color: "blue", fontSize: "24px" }}>Styled Header</h1> <button onClick={() => alert("Button Clicked!")}>Click Me</button> </div> ); } export default App;