App.js 592 Bytes
// Weather broadcasting page
import axios from "axios";
import { useState, useEffect } from "react";
// components
import Bottombar from "./components/Bottombar";
import Topbar from "./components/Topbar";
import ChatroomBox from "./components/ChatroomBox";

function App() {
  return (
    <div>
      <Topbar />
      <h1>Weather Page (home)</h1>
      <div></div>

      <Bottombar />
    </div>
  );
}

export default App;

// {Array.isArray(chats) ? (
//   chats.map((chat, i) => {
//     return <ChatroomBox key={i} chat={chat} />;
//   })
// ) : (
//   <h2>No chatting room!</h2>
// )}