2017-12-21 22:08:54 +01:00
|
|
|
import { connect } from 'react-redux';
|
2018-10-28 19:33:31 +01:00
|
|
|
import { selectThemePath } from 'redux/selectors/settings';
|
2017-12-21 22:08:54 +01:00
|
|
|
import Theme from './view';
|
2017-09-07 02:52:34 +02:00
|
|
|
|
|
|
|
const select = state => ({
|
|
|
|
themePath: selectThemePath(state),
|
|
|
|
});
|
|
|
|
|
2018-10-28 19:33:31 +01:00
|
|
|
export default connect(select)(Theme);
|