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