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