import React from "react"; import SubHeader from "component/subHeader"; import Link from "component/link"; class BackupPage extends React.PureComponent { render() { const { daemonSettings } = this.props; if (!daemonSettings || Object.keys(daemonSettings).length === 0) { return (
{__("Failed to load settings.")}
); } return (

{__("Backup Wallet")}

{__( "Right now there is no automated procedure for backing up the wallet, but rest assured we are working on it(We do have a lot on our plates ^‿^)." )} {__( " But you can still back it up manually, by following the steps mentioned here." )}
{__("Path of your wallet is: ")} {__(`${daemonSettings.lbryum_wallet_dir}`)}
); } } export default BackupPage;