I'm building a chat application using botframework v4 with React.js as front-end and .net core as back-end to generate token. I want to implement "Typing.." indicator to my chat using react. Tried using
window.WebChat.renderWebChat({
directLine: window.WebChat.createDirectLine({ token }),
sendTypingIndicator: true,
}, document.getElementById('webchat'));
as mentioned in https://github.com/microsoft/BotFramework-WebChat/tree/master/samples/05.custom-components/b.send-typing-indicator but it didn't worked. Looking for a solution for this.