2019-06-28 09:27:55 +02:00
|
|
|
import { connect } from 'react-redux';
|
2019-07-03 04:30:34 +02:00
|
|
|
import { doUpdatePublishForm, makeSelectPublishFormValue } from 'lbry-redux';
|
2020-07-29 22:30:26 +02:00
|
|
|
import PublishDescription from './view';
|
2019-06-28 09:27:55 +02:00
|
|
|
|
|
|
|
const select = state => ({
|
|
|
|
description: makeSelectPublishFormValue('description')(state),
|
|
|
|
});
|
|
|
|
|
|
|
|
const perform = dispatch => ({
|
|
|
|
updatePublishForm: value => dispatch(doUpdatePublishForm(value)),
|
|
|
|
});
|
|
|
|
|
2020-07-29 22:30:26 +02:00
|
|
|
export default connect(select, perform)(PublishDescription);
|