From ff81133b5e128045628877324d5de9143086cba6 Mon Sep 17 00:00:00 2001 From: Daniel Ternyak Date: Tue, 20 Jun 2017 01:14:23 -0500 Subject: [PATCH] reformat --- .../GenerateWalletPasswordInputComponent.jsx | 72 ++++++++++--------- 1 file changed, 38 insertions(+), 34 deletions(-) diff --git a/common/containers/Tabs/GenerateWallet/components/GenerateWalletPasswordInputComponent.jsx b/common/containers/Tabs/GenerateWallet/components/GenerateWalletPasswordInputComponent.jsx index d68bcd1f..6989f017 100644 --- a/common/containers/Tabs/GenerateWallet/components/GenerateWalletPasswordInputComponent.jsx +++ b/common/containers/Tabs/GenerateWallet/components/GenerateWalletPasswordInputComponent.jsx @@ -1,40 +1,44 @@ -import React, {Component} from 'react'; +import React, { Component } from 'react'; import PropTypes from 'prop-types'; - export default class GenerateWalletPasswordInputComponent extends Component { - constructor(props) { - super(props) - } + constructor(props) { + super(props); + } - static propTypes = { - generateWalletShowPassword: PropTypes.func, - showPassword: PropTypes.bool, - input: PropTypes.object, - meta: PropTypes.object - }; - - - render() { - return ( -
-
-
- - this.props.generateWalletShowPassword()} - aria-label="make password visible" - role="button" - className="input-group-addon eye"/> -
-
-
- ) - } + static propTypes = { + generateWalletShowPassword: PropTypes.func, + showPassword: PropTypes.bool, + input: PropTypes.object, + meta: PropTypes.object + }; + render() { + return ( +
+
+
+ + this.props.generateWalletShowPassword()} + aria-label="make password visible" + role="button" + className="input-group-addon eye" + /> +
+
+
+ ); + } }