docs.sheetjs.com/docz/docs/09-miscellany/index.md

606 B

title pagination_next
Miscellany constellation/index

import {useCurrentSidebarCategory} from '@docusaurus/theme-common';

    {useCurrentSidebarCategory().items.map(globalThis.lambda = (item, index) => { const listyle = (item.customProps?.icon) ? { listStyleImage: `url("${item.customProps.icon}")` } : {}; return (
  • {item.label}{item.customProps?.summary && (" - " + item.customProps.summary)}
      {item.items && item.items.map(lambda)}
  • ); })}