UNPKG

react-code-canvas

Version:

Package to run and preview React code with live editing capabilities in a browser.

5 lines (4 loc) 252 B
import React from 'react'; import { CodeEditorProps } from './CodeEditor'; export type LiveEditorProps = Omit<CodeEditorProps, 'code' | 'language' | 'theme' | 'onChange'>; export declare const LiveEditor: (props: LiveEditorProps) => React.JSX.Element;