react-chat-ui

ChatFeed

The ChatFeed component is your one stop shop for all your chat needs. If you don’t want to manage your own chat feed, this is a great place to start. You don’t need to worry about anything other than your messages.

Props

import React from 'react';
import { ChatFeed, Message, ChatBubbleProps } from 'react-chat-ui';
import MyChatBubble from './MyChatBubble';

class MyChat extends React.Component {
  render() {
    return (
      <ChatFeed
        chatBubble={MyChatBubble}
        messages={this.state.messages}
        showSenderName
      />
    );
  }
}