import { STR } from '../lib/strings.js'; // Outline shared by Markdown and Org — receives pre-parsed headings. export default function DocumentOutline({ headings, onSelectHeading }) { if (!headings || headings.length === 0) { return null; } return ( ); }