@0xbot/chat-react 1.0.8 → 1.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/chat-library.es.js +828 -0
- package/dist/chat-library.umd.js +43 -0
- package/dist/{style.css → index.css} +1 -1
- package/package.json +22 -30
- package/dist/index.es.js +0 -1035
- package/dist/index.umd.js +0 -52
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ pnpm add @0xbot/chat-react
|
|
|
17
17
|
```tsx
|
|
18
18
|
import React from 'react'
|
|
19
19
|
import { ChatLibrary } from '@0xbot/chat-react'
|
|
20
|
-
import '@0xbot/chat-react/dist/
|
|
20
|
+
import '@0xbot/chat-react/dist/index.css' // Import the CSS
|
|
21
21
|
|
|
22
22
|
const App = () => {
|
|
23
23
|
return (
|