UNPKG

collaborative-ui

Version:

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

8 lines (7 loc) 203 B
import * as React from 'react'; export * from './CardHeader'; export interface CardProps { header?: React.ReactNode; children?: React.ReactNode; } export declare const Card: React.FC<CardProps>;