lbry-desktop/src/renderer/component/address/index.js
2018-10-29 13:25:22 -04:00

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);