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

11 lines
272 B
JavaScript
Raw Normal View History

2017-09-07 02:52:34 +02:00
import React from "react";
import { connect } from "react-redux";
2017-11-13 22:02:23 +01:00
import { selectThemePath } from "redux/selectors/settings.js";
2017-09-07 02:52:34 +02:00
import Theme from "./view";
const select = state => ({
themePath: selectThemePath(state),
});
export default connect(select, null)(Theme);