import { Editor } from "novel";
import {
DialogClose,
DialogDescription,
DialogFooter,
DialogHeader,
DialogTitle,
} from "../ui/dialog";
import { Input } from "../ui/input";
import { Label } from "../ui/label";
import { useRef } from "react";
export function AddMemoryPage() {
return (
<>
Add a web page to memory
This will take you the web page you are trying to add to memory, where
the extension will save the page to memory
Add
Cancel
>
);
}
export function NoteAddPage() {
return (
<>
Add
Cancel
>
);
}