Created
November 18, 2019 23:53
-
-
Save yuritoledo/3dcbf1b67d3d0a02627d4f0e72569fab to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const [primaryAddress, setPrimaryAddress] = useState('') | |
const [secondaryAddress, setSecondaryAddress] = useState('') | |
useEffect(() => { | |
setPrimaryAddress(props.priAddress) | |
}, [props.priAddress]) | |
useEffect(() => { | |
setSecondaryAddress(props.secAddress) | |
}, [props.secAddress]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment