Skip to content

Instantly share code, notes, and snippets.

View CherIgor's full-sized avatar

Cher Igor CherIgor

  • Russia, Rostov-on-Don
View GitHub Profile
@Gaya
Gaya / redux-form-react-quill.jsx
Created November 9, 2017 16:00
How to use React Quill inside Redux Forms
import React from 'react';
import { Field } from 'redux-form';
import ReactQuill from 'react-quill';
function renderQuill({ input }) {
return (
<ReactQuill
{...input}
onChange={(newValue, delta, source) => {
if (source === 'user') {