react-chat-codeby
v0.1.42
Published
Two test React components
Downloads
7
Readme
react-chat-codeby
This react-chat-codeby library supports only ReactJS.
Installation
You can use any NPM-compatible package manager, including NPM itself and Yarn.
yarn add react-chat-codebyThen:
App.js
import {CommentAntd} from "react-chat-codeby";
function App() {
return (
<>
<CommentAntd
app_id={1}
people={{
"special_id": 1,
"name": "Tien.luckyfor",
"avatar": "https://fakeimg.pl/350x200/?text=Tien",
"profile_url": "https://www.facebook.com/profile.php?id=100042199030094",
}}
unique={{
"special_id": "post_id-1"
}}
/>
</>
);
}
export default App;