@nodeject/ui-components
Version:
UI library for non-trivial components
10 lines (9 loc) • 334 B
TypeScript
import * as React from 'react';
export interface ContentProps {
content?: React.ReactNode;
goToComment?: (id: string) => void;
onContentBottomReached?: (visible: boolean) => void;
onContentTopReached?: (visible: boolean) => void;
targetId?: string;
}
export declare const Content: React.FC<ContentProps>;