react-quill
react-quill copied to clipboard
How do I create a Custom HTML Toolbar in Next.js with Typescript?
I am using [email protected] in Next.js with Typescript. I got the basics going using dynamic loading.
const QuillNoSSRWrapper = dynamic(import('react-quill'), {
ssr: false,
loading: () => <p>Loading...</p>
});
A React example is provided for Custom HTML Toolbar
- What's the Next.js TypeScript equivalent of
this.quill
? - How do I implement the Custom HTML Toolbar in Next.js with Typescript?
You can take a look in here https://github.com/zenoamaro/react-quill#html-toolbar, although i'm currently experiencing problem with it, i cant add new button to format the editor
It's not working with Next.js Typescript.
@IvanFarkas @ahmad-reza619 I'm working on this exact thing right now, maybe you could help me with a related problem I just posted?