edit-pdf 0.0.3 → 0.0.4
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 +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ npm install edit-pdf
|
|
|
13
13
|
### Basic Usage
|
|
14
14
|
|
|
15
15
|
```tsx
|
|
16
|
-
import PdfEditor from 'edit-pdf';
|
|
16
|
+
import { PdfEditor } from 'edit-pdf';
|
|
17
17
|
import { useState } from 'react';
|
|
18
18
|
|
|
19
19
|
function App() {
|
|
@@ -30,7 +30,7 @@ export default App;
|
|
|
30
30
|
### Advanced Usage with Export Control
|
|
31
31
|
|
|
32
32
|
```tsx
|
|
33
|
-
import PdfEditor from 'edit-pdf';
|
|
33
|
+
import { PdfEditor } from 'edit-pdf';
|
|
34
34
|
import { useState } from 'react';
|
|
35
35
|
|
|
36
36
|
function App() {
|