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 Example from './example/index.js' import Dot from './dot.js' import { Examples } from '@freesewing/examples' import { Rendertest } from '@freesewing/rendertest' import { Tutorial } from '@freesewing/tutorial' import { Tab, Tabs } from './tabs.js' const mdxCustomComponents = (app=false) => ({ // Custom components Example: props => {props.children}, Comment: props => , Fixme: props => , Link: props => , Note: props => , ReadMore: props => , Related: props => , Tip: props => , Warning: props => , YouTube, pre: props => , img: Figure, Dot, table: props => {props.children}
, Tab, Tabs, }) export default mdxCustomComponents