mirror of
https://github.com/LBRYFoundation/lbry-android.git
synced 2025-08-29 08:21:32 +00:00
9 lines
167 B
JavaScript
9 lines
167 B
JavaScript
import { connect } from 'react-redux';
|
|
import NsfwOverlay from './view';
|
|
|
|
const perform = dispatch => ({});
|
|
|
|
export default connect(
|
|
null,
|
|
perform
|
|
)(NsfwOverlay);
|