/* Please direct questions to Hansi Xu (Wallace LaWall on Discord) */ import React from 'react'; import './chats.css' import Chat from './Chat' import Contact from './Contact' class ChatWindow extends React.Component { render() { return (
) } test() { alert("test") } } class UserList extends React.Component { render() { return (
) } } class MessageList extends React.Component { render() { return (
Got time for tennis this week, Raiden?
Foolish question. If I do not even have free time, How am I to pursue eternity and fulfill my promise to the people of Inazuma?
Aiight, see you at 4
As you wish.
) } } // class ChatWindow extends React.Component { // render() { // return ( //
// // {/* */} //
// ) // } // } class ChatInput extends React.Component { render() { return (

Placeholder

) } } export default ChatWindow;