UNPKG

@protocraft/core

Version:

A React Framework for building extensible drag and drop page editors

8 lines (7 loc) 239 B
import React from 'react'; import { NodeId } from '../interfaces'; export type NodeElementProps = { id: NodeId; render?: React.ReactElement; }; export declare const NodeElement: React.FC<React.PropsWithChildren<NodeElementProps>>;