lbry-desktop/ui/component/copyableText/index.js

8 lines
190 B
JavaScript
Raw Normal View History

2018-10-04 15:39:14 +02:00
import { connect } from 'react-redux';
import { doToast } from 'redux/actions/notifications';
2018-10-04 15:39:14 +02:00
import CopyableText from './view';
export default connect(null, {
doToast,
})(CopyableText);