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