tiptop-editor 1.0.15 → 1.0.16
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 +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -50,7 +50,7 @@ The Tiptop component takes as props all the props from the `UseEditorOptions` fr
|
|
|
50
50
|
Anyway, to use the package, just pass your props to `editorOptions` and you're good to go. Customize the Tiptop component will the props you want, as if you were using *EditorContent and passing props to the editor*.
|
|
51
51
|
```tsx
|
|
52
52
|
<TiptopEditor editorOptions={{
|
|
53
|
-
immediatelyRender: false
|
|
53
|
+
immediatelyRender: false // If using SSR (ex. a NextJS project) otherwise you can omit it
|
|
54
54
|
content: '<p>I am the Tiptop Editor</p>'
|
|
55
55
|
... // Other props
|
|
56
56
|
}}
|