mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-30 17:01:25 +00:00
12 lines
185 B
JavaScript
12 lines
185 B
JavaScript
// @flow
|
|
|
|
import { connect } from 'react-redux';
|
|
import { doNotify } from 'lbry-redux';
|
|
import Address from './view';
|
|
|
|
export default connect(
|
|
null,
|
|
{
|
|
doNotify,
|
|
}
|
|
)(Address);
|