bukazu-portal-react 3.4.1 → 3.4.2

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 CHANGED
@@ -1 +1,22 @@
1
- # React-portal
1
+ # WebComponent
2
+
3
+ This is a web component that can be used to embed the Bukazu portal in a website or application.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install bukazu-portal-react
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```jsx
14
+ import { Portal } from 'bukazu-portal-react';
15
+
16
+ function App() {
17
+ return (
18
+ <Portal pageType="calendar" />
19
+ );
20
+ }
21
+ ```
22
+