Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import debugFactory from 'debug';
import { localize } from 'i18n-calypso';
import { Component } from 'react';
import './style.scss';
const debug = debugFactory( 'calypso:me:security:2fa-status' );
class Security2faStatus extends Component {
static displayName = 'Security2faStatus';
componentDidMount() {
debug( this.constructor.displayName + ' React component is mounted.' );
}
componentWillUnmount() {
debug( this.constructor.displayName + ' React component will unmount.' );
}
render() {
return (
<p>
{ this.props.twoStepEnabled
? this.props.translate(
'{{status}}Status:{{/status}} Two-step authentication is currently {{onOff}}on{{/onOff}}.',
{
components: {
status: <span className="security-2fa-status__heading" />,
onOff: <span className="security-2fa-status__on" />,
},
}
)
: this.props.translate(
'{{status}}Status:{{/status}} Two-step authentication is currently {{onOff}}off{{/onOff}}.',
{
components: {
status: <span className="security-2fa-status__heading" />,
onOff: <span className="security-2fa-status__off" />,
},
}
) }
</p>
);
}
}
export default localize( Security2faStatus );