import React from "react"; const ROOM_URL = 'http://localhost:5062/room'; const Home = () => { const [rooms, setRooms] = React.useState([]); React.useEffect(() => { fetch(ROOM_URL) .then((r) => { console.log(r); return r.json(); }) .then((data) => { console.log(data); setRooms(data); }); }, []); const handleCreateRoom = () => { fetch(ROOM_URL, { method: 'POST', }).then(r => r.json()).then(data => { setRooms([...rooms, data]); }); } const gotoRoom = (roomId: string) => { window.location.href = `/room/${roomId}`; } return (
); } export default Home;