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

13 lines
258 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
import { selectTheme } from 'redux/selectors/settings';
import Spinner from './view';
const mapStateToProps = state => ({
theme: selectTheme(state),
});
2018-10-31 17:47:37 +01:00
export default connect(
mapStateToProps,
null
)(Spinner);