mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
12 lines
258 B
JavaScript
12 lines
258 B
JavaScript
import { connect } from 'react-redux';
|
|
import { selectTheme } from 'redux/selectors/settings';
|
|
import Spinner from './view';
|
|
|
|
const mapStateToProps = state => ({
|
|
theme: selectTheme(state),
|
|
});
|
|
|
|
export default connect(
|
|
mapStateToProps,
|
|
null
|
|
)(Spinner);
|