UNPKG

json-joy

Version:

Collection of libraries for building collaborative editing apps.

8 lines (7 loc) 258 B
import * as React from 'react'; import type { PeritextSurfaceState } from '../../web'; export interface RenderPeritextProps { ctx: PeritextSurfaceState; children: React.ReactNode; } export declare const RenderPeritext: React.FC<RenderPeritextProps>;