Tabs & Accordions
Organize content with tabs and collapsible sections
Tabs
Show content in switchable panels:
function App() {
return <h1>Hello React</h1>;
}<Tabs>
<Tab title="React">
Content for the React tab.
</Tab>
<Tab title="Vue">
Content for the Vue tab.
</Tab>
</Tabs>
Accordions
Collapsible sections for optional details:
Jamdesk is a documentation platform that builds and hosts your docs from MDX files in a GitHub repository.
Push to GitHub. Jamdesk builds and deploys automatically on every push.
Yes. Configure your custom domain in the Jamdesk dashboard under project settings.
<AccordionGroup>
<Accordion title="Question here">
Answer here.
</Accordion>
</AccordionGroup>