Drawer
Drawer is a node extension that allows you to add an Drawer to your editor.
Usage
tsx
import { Drawer } from 'reactjs-tiptap-editor/extension-bundle';
import 'easydrawer/styles.css';
const extensions = [
...,
// Import Extensions Here
Drawer.configure({
upload: (file: any) => {
// upload file to server return url
},
}),
];