mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
24 lines
374 B
TypeScript
24 lines
374 B
TypeScript
/**
|
|
* Code Editor Components
|
|
*
|
|
* Components for code editing, preview, and display.
|
|
*/
|
|
|
|
export {
|
|
MonacoEditor,
|
|
type MonacoEditorProps,
|
|
getMonacoLanguage,
|
|
configureMonacoTypeScript,
|
|
} from './MonacoEditor'
|
|
|
|
export {
|
|
CodePreview,
|
|
type CodePreviewProps,
|
|
} from './CodePreview'
|
|
|
|
export {
|
|
SplitView,
|
|
type SplitViewProps,
|
|
type ViewMode,
|
|
} from './SplitView'
|