import React from 'react'; import { withRouter } from 'react-router-dom'; import Dropzone from 'containers/Dropzone'; import PublishTitleInput from 'containers/PublishTitleInput'; import PublishUrlInput from 'containers/PublishUrlInput'; import PublishThumbnailInput from 'containers/PublishThumbnailInput'; import PublishMetadataInputs from 'containers/PublishMetadataInputs'; import ChannelSelect from 'containers/ChannelSelect'; class PublishDetails extends React.Component { constructor (props) { super(props) this.onPublishSubmit = this.onPublishSubmit.bind(this); } onPublishSubmit () { this.props.startPublish(this.props.history); } render () { return (
{/* left column */}
{/* right column */}
{ (this.props.file.type === 'video/mp4') && (
)}

By clicking 'Publish', you affirm that you have the rights to publish this content to the LBRY network, and that you understand the properties of publishing it to a decentralized, user-controlled network. Read more.

); } }; export default withRouter(PublishDetails);