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")}

{__( "Currently, there is no automatic wallet backup, but it is fairly easy to back up manually." )}

{__( "To backup your wallet, make a copy of the folder listed below:" )}

{__(`${daemonSettings.lbryum_wallet_dir}`)}

{__( "Access to these files are equivalent to having access to your credits. Keep any copies you make of your wallet in a secure place." )}

); } } export default BackupPage;