<AfterMessages>
The <AfterMessages> component is rendered inside the message list container, after the last message. In the default theme, it displays typing indicators when there are other users typing in the chat.
A collection of objects which are passed to all Chatbox theme components.
The message list uses flex-direction: column-reverse, and <AfterMessages> renders as a child of that container. This means that if you render multiple children, they appear in reverse DOM order. To display multiple children in the expected top-to-bottom order, either reverse them, or wrap them in a <div>.
In the default theme, the <AfterMessages> component is implemented as follows:
AfterMessages.jsJavaScript1// loading...