import React, { useState } from 'react' import { Passphrase } from '../../' const PassphraseDefault = (props) => { const [input, setInput] = useState('') const handleChange = (e) => setInput(e.target.value) const [confoInput, setConfoInput] = useState('') const handleConfoChange = (e) => setConfoInput(e.target.value) return ( <>