(props: Props)
| 15 | |
| 16 | class SignUpPage extends Component<Props, State> { |
| 17 | constructor(props: Props) { |
| 18 | super(props) |
| 19 | this.state = { |
| 20 | gCaptchaResponse: null, |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | onCaptchaSumit = (token: string | null) => { |
| 25 | this.setState({ gCaptchaResponse: token }) |
nothing calls this directly
no outgoing calls
no test coverage detected