mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-30 00:41:24 +00:00
21 lines
406 B
JavaScript
21 lines
406 B
JavaScript
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)
|