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