lbry-desktop/ui/component/theme/index.js
2019-11-11 13:27:29 -05:00

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);