This might be considered an edge case but something useful when defining constants as components within a mdx project, to adjust globally updating a single file.
I've got this component defining a brand name
export const BrandName = () => {
return <span>Authdog</span>
}
This pattern worked well with nextra, framework I'm migrating from to Zudoku.
Nextra:
import {BrandName} from "../../components/brandname.jsx";
# <BrandName /> Overview
Importing the same way in Zudoku, the content is rendered correctly inside the page but not on sidenav and TOC
