UNPKG

modulo-editor

Version:

A flexible and extensible block-based editor for React applications

11 lines (10 loc) 270 B
import React from "react"; import type { Block as BlockType, BlockTool } from "../types"; interface BlockProps { block: BlockType; tool?: BlockTool; isSelected: boolean; onClick: () => void; } export declare const Block: React.FC<BlockProps>; export {};