diff --git a/react/components/channelSelector.jsx b/react/components/channelSelector.jsx
new file mode 100644
index 00000000..5598b0fb
--- /dev/null
+++ b/react/components/channelSelector.jsx
@@ -0,0 +1,13 @@
+import React from 'react';
+
+class ChannelSelector extends React.Component {
+ render () {
+ return (
+
-
+
+
+
-
-
- { (this.props.file.type === 'video/mp4') && }
-
+
+
+
+
+
+ { (this.props.file.type === 'video/mp4') && }
+
+
{this.props.inputError}
@@ -108,6 +63,7 @@ class PublishDetails extends React.Component {
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.
+
diff --git a/react/components/thumbnailInput.jsx b/react/components/thumbnailInput.jsx
new file mode 100644
index 00000000..1f578b00
--- /dev/null
+++ b/react/components/thumbnailInput.jsx
@@ -0,0 +1,13 @@
+import React from 'react';
+
+class ThumbnailInput extends React.Component {
+ render () {
+ return (
+
+
thumbnail component
+
+ );
+ }
+}
+
+module.exports = ThumbnailInput;
diff --git a/react/components/titleInput.jsx b/react/components/titleInput.jsx
new file mode 100644
index 00000000..5540fd30
--- /dev/null
+++ b/react/components/titleInput.jsx
@@ -0,0 +1,21 @@
+import React from 'react';
+
+class TitleInput extends React.Component {
+ constructor (props) {
+ super(props);
+ this.handleInput = this.handleInput.bind(this);
+ }
+ handleInput (e) {
+ e.preventDefault();
+ const name = e.target.name;
+ const value = e.target.value;
+ this.props.updateUploaderState(name, value);
+ }
+ render () {
+ return (
+
+ );
+ }
+}
+
+module.exports = TitleInput;
diff --git a/react/components/urlInput.jsx b/react/components/urlInput.jsx
new file mode 100644
index 00000000..5edc96e4
--- /dev/null
+++ b/react/components/urlInput.jsx
@@ -0,0 +1,13 @@
+import React from 'react';
+
+class UrlInput extends React.Component {
+ render () {
+ return (
+
+
url component
+
+ );
+ }
+}
+
+module.exports = UrlInput;