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

11 lines
266 B
JavaScript
Raw Normal View History

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