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