You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The hook will return a function, when called with request and props, will return a render function to render the activity.
268
+
The hook will return a function, when called with request and props, will return a render function to render the activity, or `undefined` if the activity should not be rendered.
269
+
270
+
The following code snippet demonstrates rendering of activity using `useBuildRenderActivityCallback()`.
271
+
272
+
```ts
273
+
function MyComponent({ activity }: { readonly activity:WebChatActivity }) {
0 commit comments