chore(layout/right_pane): empty table of contents

This commit is contained in:
Elian Doran 2025-12-17 23:19:42 +02:00
parent dac923e45d
commit 98ed442d27
No known key found for this signature in database
2 changed files with 14 additions and 1 deletions

View File

@ -6,6 +6,7 @@ import { useEffect } from "preact/hooks";
import options from "../../services/options";
import { DEFAULT_GUTTER_SIZE } from "../../services/resizer";
import TableOfContents from "./TableOfContents";
const MIN_WIDTH_PERCENT = 5;
@ -25,7 +26,7 @@ export default function RightPanelContainer() {
return (
<div id="right-pane">
Hi there.
<TableOfContents />
</div>
);
}

View File

@ -0,0 +1,12 @@
import { t } from "../../services/i18n";
import RightPanelWidget from "./RightPanelWidget";
export default function TableOfContents() {
return (
<RightPanelWidget title={t("toc.table_of_contents")}>
Toc is here.
</RightPanelWidget>
);
}