We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91a2e11 commit a74e002Copy full SHA for a74e002
README.md
@@ -162,7 +162,7 @@ const ChatApp = () => {
162
client
163
.open({
164
user: '',
165
- token: '',
+ accessToken: '',
166
})
167
.then(res => {
168
console.log('get token success', res);
@@ -176,11 +176,11 @@ const ChatApp = () => {
176
}, [client]);
177
178
return (
179
- <div>
180
+ <div style={{ display: 'flex', height: '100vh' }}>
+ <div style={{ width: '350px' }}>
181
<ConversationList />
182
</div>
183
+ <div style={{ flex: '1' }}>
184
<Chat />
185
186
0 commit comments