Repository URL to install this package:
|
Version:
2.1.16 ▾
|
import { ReactNode } from 'react';
export interface UserCommentRenderprop extends Function {
(props?: UserCommentProps): ReactNode;
}
export interface UserCommentProps {
className?: string;
children?: ReactNode;
renderFormFields: UserCommentRenderprop;
renderWrapper?: UserCommentRenderprop;
}