UNPKG

@craftjs/core

Version:

A React Framework for building extensible drag and drop page editors

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