Skip to content

Instantly share code, notes, and snippets.

@Zwiterrion
Last active March 7, 2024 07:39
Show Gist options
  • Save Zwiterrion/1bf0e11fb834bba3aa5c8449a50366d9 to your computer and use it in GitHub Desktop.
Save Zwiterrion/1bf0e11fb834bba3aa5c8449a50366d9 to your computer and use it in GitHub Desktop.
export function Chat() {
return (
<div className="chat">
<div className="messages" />
<div className="submission-form">
<input placeholder="Type your message here!" type="text" />
<button>Send</button>
</div>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment