import Popout from '../popout.js' import Highlight from './highlight.js' import YouTube from './youtube.js' import Figure from './figure.js' import ReadMore from './read-more.js' import { Tab, Tabs } from './tabs.js' import Example from './example/index.js' const mdxCustomComponents = (app = false) => ({ // Custom components 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) => , }) export default mdxCustomComponents