@pusher/chatkit
Version:
Pusher Chatkit client library for browsers and react native
23 lines (22 loc) • 614 B
HTML
<html>
<head>
<meta charset="utf-8">
<title>Chatkit Example</title>
<!-- <script src="https://unpkg.com/pusher-chatkit-client@next"></script> -->
<script src="../dist/web/chatkit.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<ul id="messages"></ul>
<div id="compose-wrapper">
<input name="messageText" type="text" id="text-input">
<div class="choose-file">
+
<input name="testfile" type="file">
</div>
<div id="send-button">SEND</div>
</div>
<script src="main.js"></script>
</body>
</html>