lbry-desktop/ui/js/page/backup/index.js
hackrush aefda6398b Added wallet backup guide referance.
It also displays the current wallet path so user doesn't have to "go
places"

Could use a different/better msg though, this was more of a place
holder.
2017-08-15 17:20:38 -04:00

11 lines
288 B
JavaScript

import React from "react";
import { connect } from "react-redux";
import { selectDaemonSettings } from "selectors/settings";
import BackupPage from "./view";
const select = state => ({
daemonSettings: selectDaemonSettings(state),
});
export default connect(select, null)(BackupPage);