import { useState } from 'react'; import './App.css'; function App() { let [content, setContent] = useState("Loading…") fetch('/api/').then(res => res.json()).then(data => setContent(data['message'])) return (