import React from "react"; import { AnnotationsDashboard } from "@/components/annotations"; interface BookmarksNotesPageProps { bookId?: string; } export function BookmarksNotesPage({ bookId, }: BookmarksNotesPageProps): React.ReactElement { return (

Bookmarks & Notes

{ // Navigate to the book reader page at the specific page window.location.href = `/books/${bookId}?page=${page}`; }} />
); }