11 lines
288 B
JavaScript
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);
|