Layout support via export default
You can now export a component as the default
and it will wrap the output JSX. This is great when your MDX file is the entrypoint like a standalone page.
import MyLayout from '../somewhere'
# hello world
some text
export default (props) => <MyLayout {...props} title="test" />