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