17 lines
254 B
TypeScript
17 lines
254 B
TypeScript
import type {ReaptchaProps} from 'reaptcha';
|
|
import React from 'react';
|
|
|
|
class Reaptcha extends React.Component<ReaptchaProps, {}> {
|
|
execute() {
|
|
this.props.onVerify('token');
|
|
}
|
|
|
|
reset() {}
|
|
|
|
render() {
|
|
return <></>;
|
|
}
|
|
}
|
|
|
|
export default Reaptcha;
|