react-quill-security
v0.3.3
Published
A security, high availability and high performance react library of quill rich text editor
Readme
React Quill Editor
A security react quill editor, react-quill is out of date, it's time to retire it!
Browser Support
|
|
|
|
|
|
--- | --- | --- | --- | --- | --- |
Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ | 11 ✔ |
Install
Using npm:
$ npm install react-quill-securityUsing yarn:
$ yarn add react-quill-securityMinimize Example
import QuillSecurity from 'react-quill-security';
export default App = props => {
const initValue = useRef({
"ops":[{"insert":"React Quill Security Working!\n"}]
});
const [value, setValue] = useState(initValue.current);
return (
<QuillSecurity
value={value}
onChange={value => setValue(value)}
/>
);
}
}License
BSD 3-clause
