492b1601f6
update subscription types update changelog Simplify subscriptions sync logic add claim type use let over const change spinner color based on theme clean up subscriptions
9 lines
252 B
JavaScript
9 lines
252 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);
|