lbry-desktop/ui/js/component/authOverlay/index.jsx

22 lines
406 B
React
Raw Normal View History

2017-06-01 18:20:12 +02:00
import React from 'react'
import {
connect
} from 'react-redux'
import {
doStartUpgrade,
doCancelUpgrade,
} from 'actions/app'
import {
selectAuthenticationIsPending,
} from 'selectors/user'
import AuthOverlay from './view'
const select = (state) => ({
isPending: selectAuthenticationIsPending(state)
})
const perform = (dispatch) => ({
})
export default connect(select, perform)(AuthOverlay)