import { HeadingComp, HeadingThreeComp, SubheadingComp } from "src/ui/components/heading-component"; import { IMarking } from "src/types/editor-types"; import { Editor } from "@tiptap/react"; import { scrollSummary } from "src/utils/editor-summary-utils"; interface ContentBrowserProps { editor: Editor; markings: IMarking[]; setSidePeekVisible?: (sidePeekState: boolean) => void; } export const ContentBrowser = (props: ContentBrowserProps) => { const { editor, markings, setSidePeekVisible } = props; const handleOnClick = (marking: IMarking) => { scrollSummary(editor, marking); if (setSidePeekVisible) setSidePeekVisible(false); } return (
Headings will be displayed here for navigation
)}