[Problem/Question]
Can I use presence in UIKit React?
When I search the features about presence indicators, there is no document for using presence indicators in React UIKit.
It’ll be thanks if you guys let me know if I can use it on React UIKit or not
// If problem, please fill out the below. If question, please delete.
[UIKit Version]
// What version of the SDK are you using?
“@sendbird/uikit-react”: “^3.15.9”,
<SendbirdProvider
colorSet={colorSet}
appId={process.env.NEXT_PUBLIC_PROBIT_SENDBIRD_APP_ID as string}
userId={userId}
accessToken={accessToken}
uikitOptions={{
groupChannel: {
enableTypingIndicator: true,
typingIndicatorTypes: new Set([TypingIndicatorType.Bubble, TypingIndicatorType.Text]),
},
}}
>
<GroupChannelProvider channelUrl={channelUrl}>
<GroupChannel scrollBehavior="smooth" channelUrl={channelUrl} />
</GroupChannelProvider>
</SendbirdProvider>
It’ll be better if I know when user left !