mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-26 02:37:49 +08:00
26 lines
525 B
TypeScript
26 lines
525 B
TypeScript
import React from 'react'
|
|
|
|
import { useReactNodeView } from './useReactNodeView'
|
|
|
|
export interface NodeViewContentProps {
|
|
[key: string]: any,
|
|
as?: React.ElementType,
|
|
}
|
|
|
|
export const NodeViewContent: React.FC<NodeViewContentProps> = props => {
|
|
const Tag = props.as || 'div'
|
|
const { nodeViewContentRef } = useReactNodeView()
|
|
|
|
return (
|
|
<Tag
|
|
{...props}
|
|
ref={nodeViewContentRef}
|
|
data-node-view-content=""
|
|
style={{
|
|
whiteSpace: 'pre-wrap',
|
|
...props.style,
|
|
}}
|
|
/>
|
|
)
|
|
}
|