import React from 'react';
import Dropzone from '../Dropzone';
import PublishForm from '../PublishForm';
import PublishStatus from '../../components/PublishStatus.jsx';
class PublishTool extends React.Component {
render () {
if (this.props.file) {
if (this.props.status) {
return (
);
} else {
return ;
}
} else {
return ;
}
}
};
export default PublishTool;