I am using ReactQuill as a component, but I am facing this error while using Typescript. Any suggestions for mitigation
JSX element type 'ReactQuill' is not a constructor function for JSX elements. Types of property 'render' are incompatible. Type '() => ReactNode' is not assignable to type '{ (): false | Element | null; (): ReactNode; }'. Type 'ReactNode' is not assignable to type 'false | Element | null'. Type 'undefined' is not assignable to type 'false | Element | null'.`
<ReactQuill/>
is what is used. – Devansh Jain