import React from 'react'; import PreviewDropzone from './PreviewDropzone.jsx'; import PublishTitleInput from './PublishTitleInput.jsx'; import ChannelSelector from './ChannelSelector.jsx'; import PublishUrlInput from './PublishUrlInput.jsx'; import PublishThumbnailInput from './PublishThumbnailInput.jsx'; import PublishMetadataInputs from './PublishMetadataInputs.jsx'; import AnonymousOrChannelSelect from './AnonymousOrChannelSelect.jsx'; import { selectFile, clearFile } from '../actions'; import { connect } from 'react-redux'; class PublishForm extends React.Component { constructor (props) { super(props); // set defaults this.state = { error : null, showMetadataInputs: false, }; this.publish = this.publish.bind(this); } publish () { // publish the asset } render () { return (
By clicking 'Upload', 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.