Last active
June 22, 2021 14:16
-
-
Save velotiotech/2e6fcbf543a357c990b096fe0d5774c6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Quill from "quill"; | |
import * as Y from 'yjs'; | |
import { QuillBinding } from 'y-quill'; | |
import { WebsocketProvider } from 'y-websocket'; | |
import QuillCursors from "quill-cursors"; | |
// Register QuillCursors module to add the ability to show multiple cursors on the editor. | |
Quill.register('modules/cursors', QuillCursors); | |
window.addEventListener('load', () => { | |
// We'll add more blocks as we continue | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment