lbry-desktop/ui/page/channelNew/index.js

10 lines
226 B
JavaScript
Raw Normal View History

2020-06-29 21:54:07 +02:00
import { connect } from 'react-redux';
2020-08-25 21:54:06 +02:00
import { selectBalance } from 'lbry-redux';
2020-06-29 21:54:07 +02:00
import ChannelNew from './view';
2020-08-25 21:54:06 +02:00
const select = state => ({
balance: selectBalance(state),
});
2020-06-29 21:54:07 +02:00
2020-08-25 21:54:06 +02:00
export default connect(select)(ChannelNew);