import React from 'react' import { useReactNodeView } from './useReactNodeView' export interface NodeViewWrapperProps { [key: string]: any, as?: React.ElementType, } export const NodeViewWrapper: React.FC = React.forwardRef((props, ref) => { const { onDragStart } = useReactNodeView() const Tag = props.as || 'div' return ( ) })