3achatclient
v2.0.0
Published
use for Realtime chating...
Downloads
15
Readme
3auserchat
use for Realtime chating...
Install
npm install --save 3auserchatUsage
import React, { Component } from 'react'
import ChatClient from '3auserchat'
import '3auserchat/dist/index.css'
interface Props {
userId: string;
appId: string;
clientId: string;
}
class Example extends Component<{ userId,appId,clientId }: Props> {
render() {
return <ChatClient appId={appId} clientId={clientId} userId={userId} />
}
}License
MIT © selva3A
Fixes
- Realtime online/offline status updation
- Chat height option enabled
- Scroll enabled while new message
- Appheight added it will set responsive
- Left bar and Chat user overflow fixes
- Unread count added
- File format issue fix
- Responsive changes
- chat ui fixes
- height fixes
