import React from 'react' import 'react-quill/dist/quill.snow.css'; import { Grid, FormControl, FormLabel } from '@material-ui/core' import ReactQuill, { Quill, Mixin, Toolbar } from 'react-quill' export default () => { const quillModules = { toolbar: [ [{ header: [1, 2, false] }], ['bold', 'italic', 'underline', 'strike', 'blockquote'], [{ list: 'ordered' }, { list: 'bullet' }, { indent: '-1' }, { indent: '+1' }], ['link', 'image'], ['clean'], ], } const quillFormats = ['header', 'bold', 'italic', 'underline', 'strike', 'blockquote', 'list', 'bullet', 'indent', 'link', 'image'] return (