UNPKG

asimex-visual-editor

Version:

A powerful visual page editor component for React applications

15 lines (14 loc) 401 B
import React from 'react'; import { Device } from '../DeviceManager'; import { Block } from '../BlockManager'; import '../../styles/editor.css'; interface EditorProps { canvasUrl?: string; devices?: Device[]; blocks?: Block[]; showDeviceManager?: boolean; showBlockManager?: boolean; showPreview?: boolean; } declare const Editor: React.FC<EditorProps>; export default Editor;