游乐场
MDX
加载游乐场...
用法
基本用法
import { Playground } from 'nextra/components'
# Playground
Below is a playground component. It mixes into the rest of your MDX perfectly.
<Playground source="## Hello world" />
您也可以像这样指定一个回退组件
带回退的用法
import { Playground } from 'nextra/components'
<Playground
source="## Hello world"
fallback={<div>Loading playground...</div>}
/>