import Example from './index.js' import { Tab, Tabs } from '../tabs.js' import { Examples } from '@freesewing/examples' import { Rendertest } from '@freesewing/rendertest' import { Tutorial } from '@freesewing/tutorial' import Md from 'react-markdown' const Preview = (props) => const patterns = { examples: Examples, //rendertest: Rendertest, //tutorial: Tutorial, } const TabbedExample = ({ app, pattern, part, children, caption }) => (
{children} {caption &&
{caption}
}
) export default TabbedExample