Example
Usage
function openUserProfileModal(userId) {
...
}
function MyApp() {
return (
<AmityUiKitProvider
actionHandlers={{
onClickUser: userId => openUserProfileModal(userId),
}}
>
...
</AmityUiKitProvider>
);
}Last updated
Was this helpful?