Files
hatchet/frontend/docs/mdx-components.js
Gabe Ruttner 80e3ef6a13 Fix security patches (#1462)
* patch: next

* patch: axios

* nextra 2 -> 3

* final fixes for docs

* fix: v0-docs

* chore: update dependencies

* chore: update fe

* chore: final fixes

* fix: vite

* fix: generate

* chore: generate

* chore: generate

* lint
2025-04-01 06:40:42 -07:00

18 lines
404 B
JavaScript

// MDX components for Nextra 4
import React from 'react';
import { Callout, Card, Cards, Steps, Tabs, FileTree } from 'nextra/components';
export function useMDXComponents(components) {
return {
...components,
// Adding Nextra components so they can be used in MDX files
Callout,
Card,
Cards,
Steps,
Tabs,
FileTree,
// You can add your custom components here
}
}