A UI library of react for online chat application
npm install react-chat-appA UI library of react for online chat application.
npm i react-chat-app yarn add react-chat-app
git clone https://github.com/Yaozu-Xu/react-chat-app yarn dev yarn install yarn storybook 
``javascript
import ChatApp, {MessageList, Conversation, Profile, NavBar} from 'react-chat-app'
// Coustomize your components style
const MyMessageList = () => (
{[0, 1, 2, 3, 4].map((_, key) => (
}
avatarUrl={face1}
iconSvg={Replied}
title="David"
avatarStatus="online"
subtitle="onlne"
rightLabel="3 hours"
description="A long paragraph long paragraph long paragraph"
active
/>
))}
)
const MyConversation = () => (
I am grand but busy working recently
See you tomorrow
)
const MyNavBar = () => (
)
const MyProfile = () => (
)
const ChatApp = () => (
sideBar={MyMessageList}
content={MyConversation}
profile={MyProfile}
/>)
``



