import React from "react"; const url = "https://discordapp.com/api/guilds/550309736214691840/widget.json"; const App = () => { const [status, setStatus] = React.useState(0); React.useEffect(() => { fetch(url) .then((r) => r.json()) .then((j) => setStatus(j.members[15].status)) }, []); if (status === "online") { return
}else{ if (status === "idle") { return }else{ if (status === "dnd") { return }else{ return } } } }; export default App;