lbry-desktop/ui/component/theme/index.js

10 lines
236 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
import { selectThemePath } from 'redux/selectors/settings';
import Theme from './view';
2017-09-07 02:52:34 +02:00
const select = state => ({
themePath: selectThemePath(state),
});
export default connect(select)(Theme);