10 lines
236 B
JavaScript
10 lines
236 B
JavaScript
|
import { connect } from 'react-redux';
|
||
|
import { selectThemePath } from 'redux/selectors/settings';
|
||
|
import Theme from './view';
|
||
|
|
||
|
const select = state => ({
|
||
|
themePath: selectThemePath(state),
|
||
|
});
|
||
|
|
||
|
export default connect(select)(Theme);
|