import React, { Component } from 'react'; import { observer } from 'mobx-react'; import {Button} from 'antd'; import { i18n } from '../../public/i18n'; @observer export default class Resend extends Component { constructor(props) { super(props); } render() { const {store} = this.props; const { showTimeout, t, getSecDynamicPassword, sendBtnLabel } = store; if(t == -1) return null; return (