diff --git a/notes/bun.lockb b/notes/bun.lockb index 97bad5d..e569e1f 100755 Binary files a/notes/bun.lockb and b/notes/bun.lockb differ diff --git a/notes/index.html b/notes/index.html index 46f95dd..3b9116e 100644 --- a/notes/index.html +++ b/notes/index.html @@ -3,6 +3,8 @@ + + Notes diff --git a/notes/package.json b/notes/package.json index f52d81c..5603162 100644 --- a/notes/package.json +++ b/notes/package.json @@ -15,7 +15,8 @@ "@mui/material": "^6.1.7", "@tauri-apps/api": "^2", "@tauri-apps/plugin-shell": "^2", - "lucide-react": "^0.460.0" + "lucide-react": "^0.460.0", + "quill": "2.0.2" }, "devDependencies": { "@tauri-apps/cli": "^2", diff --git a/notes/src/main.tsx b/notes/src/main.tsx index 8b70e55..e6ee85c 100644 --- a/notes/src/main.tsx +++ b/notes/src/main.tsx @@ -4,6 +4,13 @@ import React from 'react'; // @ts-ignore import ReactDOM from "react-dom/client"; +import Quill from 'quill'; +import "quill/dist/quill.core.css"; + +const quill = new Quill("#editor", { theme: "snow" }); +console.log("Quill", quill); + +/* import NoteEditor from "./claude-generated-code"; const domElem = document.getElementById("editor"); @@ -13,6 +20,7 @@ ReactDOM.createRoot(domElem).render( , ); +*/ let greetInputEl: HTMLInputElement | null;