17871e78c8
Also applied new Settings Page styling.
8 lines
210 B
JavaScript
8 lines
210 B
JavaScript
import { connect } from 'react-redux';
|
|
import SettingAppearance from './view';
|
|
|
|
const select = (state) => ({});
|
|
|
|
const perform = (dispatch) => ({});
|
|
|
|
export default connect(select, perform)(SettingAppearance);
|