aefda6398b
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.
10 lines
288 B
JavaScript
10 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);
|