@apteva/apteva-kit 0.1.29 → 0.1.30
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 +14 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,6 +24,20 @@ yarn add @apteva/apteva-kit
|
|
|
24
24
|
bun add @apteva/apteva-kit
|
|
25
25
|
```
|
|
26
26
|
|
|
27
|
+
### Required: Import Styles
|
|
28
|
+
|
|
29
|
+
Add this import to your app's root layout or entry point:
|
|
30
|
+
|
|
31
|
+
```tsx
|
|
32
|
+
import '@apteva/apteva-kit/styles.css';
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
For Next.js, add it to `app/layout.tsx`:
|
|
36
|
+
```tsx
|
|
37
|
+
import '@apteva/apteva-kit/styles.css';
|
|
38
|
+
import './globals.css'; // your app's styles
|
|
39
|
+
```
|
|
40
|
+
|
|
27
41
|
## Components
|
|
28
42
|
|
|
29
43
|
### `<Chat>` - Full Chat Interface
|