This repository has been archived on 2024-04-27. You can view files and clone it, but cannot push or open issues or pull requests.
riplog-view/frontend/src/App.tsx

17 lines
348 B
TypeScript

import React from "react";
import ChannelList from "./ChannelList";
import Chatroom from "./ChatRoom";
export default function App() {
return (
<div className="main">
<section className="channelList">
<ChannelList />
</section>
<section className="chatroom">
<Chatroom />
</section>
</div>
);
}