UNPKG

modulo-editor

Version:

A flexible and extensible block-based editor for React applications

10 lines (9 loc) 258 B
import React from "react"; import type { BlockTool } from "../types"; interface ToolbarProps { tools: Record<string, BlockTool>; showUndoRedo?: boolean; showSaveButton?: boolean; } export declare const Toolbar: React.FC<ToolbarProps>; export {};