2019-06-28 03:27:55 -04:00
|
|
|
import { connect } from 'react-redux';
|
2019-12-19 12:22:38 -05:00
|
|
|
import { selectPublishFormValues, doUpdatePublishForm } from 'lbry-redux';
|
2019-06-28 03:27:55 -04:00
|
|
|
import PublishPage from './view';
|
|
|
|
|
|
|
|
const select = state => ({
|
|
|
|
...selectPublishFormValues(state),
|
|
|
|
});
|
|
|
|
|
|
|
|
const perform = dispatch => ({
|
|
|
|
updatePublishForm: value => dispatch(doUpdatePublishForm(value)),
|
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(
|
|
|
|
select,
|
|
|
|
perform
|
|
|
|
)(PublishPage);
|