Back to Dnd Kit

Sandbox

apps/docs/snippets/sandbox.mdx

latest409 B
Original Source

export const CodeSandbox = ({ files, height, hero, previewHeight, showTabs, template }) => { const Element = 'code-sandbox';

return ( <Element class={not-prose${hero ? ' hero' : ''}} files={JSON.stringify(files)} height={height} style={previewHeight ? {'--preview-height': ${previewHeight}px} : undefined} showTabs={showTabs} template={template} /> ); };