1.1.16 • Published 3 years ago
publy-editor v1.1.16
Publy Editor
A rich text editor for Publy co. services
Installation:
npm install publy-editor --save-dev
or
yarn add -D publy-editor
Basic Usage :
Add PublyEditor
to your component:
// react 18
import React from 'react'
import ReactDOM from 'react-dom/client'
import { PublyEditor, PublyEditorContextProvider } from 'publy-editor'
const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement)
root.render(
<React.StrictMode>
<PublyEditorContextProvider>
<PublyEditor editorType='tiptap'/>
</PublyEditorContextProvider>
</React.StrictMode>,
)
// < react 18
import React from 'react';
import ReactDOM from 'react-dom';
import { PublyEditor } from 'publy-editor';
ReactDOM.render(
<React.StrictMode>
<PublyEditorContextProvider>
<PublyEditor editorType='tiptap'/>
</PublyEditorContextProvider>
</React.StrictMode>,
document.getElementById('root'),
);
1.1.16
3 years ago
1.1.15
3 years ago
1.1.14
3 years ago
1.1.13
3 years ago
1.1.12
3 years ago
1.1.11
3 years ago
1.1.10
3 years ago
1.1.9
3 years ago
1.1.8
3 years ago
1.1.7
3 years ago
1.1.6
3 years ago
1.1.5
3 years ago
1.1.4
3 years ago
1.1.3
3 years ago
1.1.2
3 years ago
1.1.1
3 years ago
1.1.0
3 years ago
1.0.8
3 years ago
1.0.7
3 years ago
1.0.6
3 years ago
1.0.5
3 years ago
1.0.4
3 years ago
1.0.3
3 years ago
1.0.2
3 years ago
1.0.1
3 years ago
1.0.0
3 years ago