Back to Mdx

Community

docs/community/index.mdx

3.1.1852 B
Original Source

{ /**

  • @import {Item} from '../_component/sort.js' */

/**

  • @typedef Props
  • @property {Item} navigationTree */ }

import assert from 'node:assert/strict' import {NavigationGroup} from '../_component/nav.jsx'

export const info = { author: [{name: 'MDX Contributors'}], modified: new Date('2024-07-04'), published: new Date('2021-11-01') } export const navSortSelf = 6

Community

These pages explain how to contribute, get help, sponsor us, share your work, and some background information.

{ (function () { const navigationTree = props.navigationTree const category = navigationTree.children.find(function (item) { return item.name === '/community/' }) assert(category)

return (
  <nav>
    <NavigationGroup items={category.children} includeDescription />
  </nav>
)

})() }