// @flow import React from 'react'; import { Modal } from 'modal/modal'; import Card from 'component/common/card'; import Button from 'component/button'; import I18nMessage from 'component/i18nMessage'; type Props = { doHideModal: () => void, doSignOut: () => void, }; function ModalRepost(props: Props) { const { doHideModal, doSignOut } = props; return ( ), }} > Your wallet data will remain intact. If you sign in with a different account, the wallets will be merged. To prevent this, you need to %rename_wallet_instructions% in the lbry/wallets directory. } actions={
} />
); } export default ModalRepost;