lbry-desktop/ui/js/component/theme/index.js
2017-11-13 16:02:23 -05:00

11 lines
272 B
JavaScript

import React from "react";
import { connect } from "react-redux";
import { selectThemePath } from "redux/selectors/settings.js";
import Theme from "./view";
const select = state => ({
themePath: selectThemePath(state),
});
export default connect(select, null)(Theme);