@kindly/react-chat
v2.62.8
Published
Kindly Chat react component
Downloads
1,603
Keywords
Readme
Getting started
npm install @kindly/react-chat react react-dom pusher-js
Pusher and react modules are peerDependencies to keep bundle size lower
import React from 'react';
import KindlyChat, { GlobalStyles } from '@kindly/react-chat';
export default () => (
<div>
<KindlyChat botKey="YOUR KEY" />
{/* For fonts use the GlobalStyles component */}
<GlobalStyles />
</div>
);