import React from 'react' import { useReactNodeView } from './useReactNodeView' export interface NodeViewContentProps { as: React.ElementType } export const NodeViewContent: React.FC = props => { // TODO // @ts-ignore const { isEditable } = useReactNodeView() const Tag = props.as || 'div' return ( ) }