tee3apps-cms-sdk-react 0.0.1 → 0.0.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.
Files changed (2) hide show
  1. package/README.md +3 -4
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -15,13 +15,12 @@ A powerful and flexible React component library for dynamically rendering pages
15
15
  ## 📦 Installation
16
16
 
17
17
  ```bash
18
- npm install page-render/react
19
- ```
18
+ npm install tee3apps-cms-sdk-react```
20
19
 
21
20
  or with yarn:
22
21
 
23
22
  ```bash
24
- yarn add page-render/react
23
+ yarn add tee3apps-cms-sdk-react
25
24
  ```
26
25
 
27
26
  ## 🔧 Basic Usage
@@ -30,7 +29,7 @@ Here's a simple example of how to use the Dynamic Page Renderer:
30
29
 
31
30
  ```jsx
32
31
  import React, { useState, useEffect } from 'react';
33
- import { Page } from 'page-render/react';
32
+ import { Page } from 'tee3apps-cms-sdk-react';
34
33
 
35
34
  function App() {
36
35
  const [pageData, setPageData] = useState(null);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tee3apps-cms-sdk-react",
3
- "version": "0.0.1",
4
- "description": "convert json to page",
3
+ "version": "0.0.2",
4
+ "description": "Uses JSON to dynamically generate and render UI pages in a website",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.ts",