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 { HttpMethod, HttpStatusCode } from './http.mjs' import { ControlTip } from '../control/tip.mjs' const Fixme = () =>

FIXME

export const components = { // Custom components Method: HttpMethod, StatusCode: HttpStatusCode, Comment: (props) => , Fixme: (props) => , Link: (props) => , Note: (props) => , ReadMore, Related: (props) => , Tip: (props) => , Warning: (props) => , YouTube, pre: (props) => , // This Figure component causes hydration errors //img: Figure, table: (props) => ( {props.children}
), Tab, Tabs, ControlTip, Example, PatternDocs: Fixme, PatternOptions: Fixme, }