mirror of
https://github.com/yjs/yjs.git
synced 2025-12-25 07:59:33 +01:00
19 lines
497 B
HTML
19 lines
497 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<!-- Main Quill library -->
|
|
<script src="../../node_modules/quill/dist/quill.min.js"></script>
|
|
<link href="../../node_modules/quill/dist/quill.snow.css" rel="stylesheet">
|
|
<!-- Yjs Library and connector -->
|
|
<script src="../../y.js"></script>
|
|
<script src='../../../y-websockets-client/y-websockets-client.js'></script>
|
|
</head>
|
|
<body>
|
|
<div id="quill-container">
|
|
<div id="quill">
|
|
</div>
|
|
</div>
|
|
<script src="./index.js"></script>
|
|
</body>
|
|
</html>
|