import React, { Component } from 'react'; import PropTypes from 'prop-types'; export default class PasswordInput extends Component { constructor(props) { super(props); } static propTypes = { showPasswordGenerateWallet: PropTypes.func, showPassword: PropTypes.bool, input: PropTypes.object, meta: PropTypes.object }; render() { return (
); } }