UNPKG

json-joy

Version:

Collection of libraries for building collaborative editing apps.

11 lines (10 loc) 342 B
import * as React from 'react'; import { DebugState } from './state'; import type { PeritextSurfaceState } from '../../web'; export interface RenderPeritextProps { children: React.ReactNode; ctx: PeritextSurfaceState; state?: DebugState; button?: boolean; } export declare const RenderPeritext: React.FC<RenderPeritextProps>;