lbry-desktop/ui/component/walletBackup/index.js

10 lines
265 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
import { selectDaemonSettings } from 'redux/selectors/settings';
2019-05-14 04:51:33 +02:00
import WalletBackup from './view';
const select = state => ({
daemonSettings: selectDaemonSettings(state),
});
2019-05-14 04:51:33 +02:00
export default connect(select)(WalletBackup);