UNPKG

json-joy

Version:

Collection of libraries for building collaborative editing apps.

8 lines (7 loc) 326 B
import * as React from 'react'; import type { Inline } from '../../../json-crdt-extensions/peritext/block/Inline'; export interface InlineViewProps { inline: Inline; } /** @todo Add ability to compute `.hash` for {@link Inline} nodes and use for memoization. */ export declare const InlineView: React.FC<InlineViewProps>;