mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
21 lines
423 B
JavaScript
21 lines
423 B
JavaScript
import React from 'react'
|
|
import {
|
|
connect,
|
|
} from 'react-redux'
|
|
import {
|
|
selectObscureNsfw,
|
|
selectHidePrice,
|
|
selectHasSignature,
|
|
} from 'selectors/app'
|
|
import FileActions from './view'
|
|
|
|
const select = (state) => ({
|
|
obscureNsfw: selectObscureNsfw(state),
|
|
hidePrice: selectHidePrice(state),
|
|
hasSignature: selectHasSignature(state),
|
|
})
|
|
|
|
const perform = {
|
|
}
|
|
|
|
export default connect(select, perform)(FileActions)
|