UNPKG

collaborative-ui

Version:

React component library for building real-time collaborative editing applications.

7 lines (6 loc) 168 B
import * as React from 'react'; export interface RowProps { title?: React.ReactNode; children: React.ReactNode; } export declare const Row: React.FC<RowProps>;