import logo from './logo.svg'; import './App.css'; function App() { const handleButtonClick1 = () => { fetch('http://localhost:5000/') .then((response) => response.json()) .then((data) => console.log(data.message)) .catch((error) => console.error('An error occurred:', error)); }; const handleButtonClick2 = () => { fetch('api/') .then((response) => { response.json() console.log(response) }) .then((data) => console.log(data.message)) .catch((error) => console.error('An error occurred:', error)); }; return (
logo

Edit src/App-1.js and save to reload.

Learn React -- - 10
); } export default App;