tee3apps-cms-sdk-react 0.0.1 → 0.0.3

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 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -15,13 +15,13 @@ 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
18
+ npm install tee3apps-cms-sdk-react
19
19
  ```
20
20
 
21
21
  or with yarn:
22
22
 
23
23
  ```bash
24
- yarn add page-render/react
24
+ yarn add tee3apps-cms-sdk-react
25
25
  ```
26
26
 
27
27
  ## 🔧 Basic Usage
@@ -30,7 +30,7 @@ Here's a simple example of how to use the Dynamic Page Renderer:
30
30
 
31
31
  ```jsx
32
32
  import React, { useState, useEffect } from 'react';
33
- import { Page } from 'page-render/react';
33
+ import { Page } from 'tee3apps-cms-sdk-react';
34
34
 
35
35
  function App() {
36
36
  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.3",
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",