Repository URL to install this package:
|
Version:
2.7.3 ▾
|
import React from 'react';
import { UserCommentProps } from './typings';
import { defaultRenderFormFields } from './renderProps';
declare class UserComment extends React.PureComponent<UserCommentProps> {
static defaultProps: {
className: string;
renderFormFields: typeof defaultRenderFormFields;
};
render(): JSX.Element;
}
export { UserComment };
export default UserComment;