UNPKG

react-code-canvas

Version:

React component for running and previewing React code with live editing capabilities

10 lines (9 loc) 348 B
import React from 'react'; export interface ReactCanvasProps { code: string; scope?: Record<string, React.ComponentType | unknown>; showPreview?: boolean; showEditor?: boolean; showError?: boolean; } export default function ReactCanvas({ code, scope, showPreview, showEditor, showError, }: ReactCanvasProps): React.JSX.Element;