Get started with react-quill CDN
MIT licensed
React Quill is a popular React library for implementing rich text editors in applications.
Tags:- react
- react-component
- rich
- text
- rich-text
- textarea
Stable version
Copied!
How to start using react-quill CDN
import React from 'react';
import Quill from 'react-quill';
import 'react-quill/dist/quill.snow.css'; // for styles
const App = () => {
return (
<div>
<h1>React Quill Example</h1>
<Quill theme="snow" value="<p>Hello Quill!</p>" onChange={value => console.log(value)} />
</div>
);
};
export default App;