lbry-desktop/ui/component/settingSystem/index.js
2021-08-23 23:45:05 +08:00

12 lines
299 B
JavaScript

import { connect } from 'react-redux';
import { doClearCache } from 'redux/actions/app';
import SettingSystem from './view';
const select = (state) => ({});
const perform = (dispatch) => ({
clearCache: () => dispatch(doClearCache()),
});
export default connect(select, perform)(SettingSystem);