import { Popout } from 'shared/components/popout.mjs' import { Highlight } from './highlight.mjs' import { YouTube } from './youtube.mjs' import { Figure } from './figure.mjs' import { ReadMore } from './read-more.mjs' import { Tab, Tabs } from './tabs.mjs' import { TabbedExample as Example } from './tabbed-example.mjs' import { Examples } from './examples.mjs' import { HttpMethod, HttpStatusCode } from './http.mjs' const Fixme = () =>

FIXME

export const MdxComponents = (app = false) => ({ // Custom components Method: HttpMethod, StatusCode: HttpStatusCode, Comment: (props) => , Fixme: (props) => , Link: (props) => , Note: (props) => , ReadMore: (props) => , Related: (props) => , Tip: (props) => , Warning: (props) => , YouTube, pre: (props) => , img: Figure, table: (props) => ( {props.children}
), Tab, Tabs, Example: (props) => , Examples: (props) => , PatternDocs: Fixme, PatternOptions: Fixme, })