From 9b0b007a5da75d70ec25b141c2a47b1b0010f5a3 Mon Sep 17 00:00:00 2001 From: Clemens Date: Fri, 5 Aug 2016 12:47:34 +0200 Subject: change some style --- .../components/ContentView/ContentViewOptions.jsx | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 web/src/js/components/ContentView/ContentViewOptions.jsx (limited to 'web/src/js/components/ContentView/ContentViewOptions.jsx') diff --git a/web/src/js/components/ContentView/ContentViewOptions.jsx b/web/src/js/components/ContentView/ContentViewOptions.jsx new file mode 100644 index 00000000..fed3a088 --- /dev/null +++ b/web/src/js/components/ContentView/ContentViewOptions.jsx @@ -0,0 +1,31 @@ +import React, { PropTypes } from 'react' +import { connect } from 'react-redux' +import ViewSelector from './ViewSelector' +import UploadContentButton from './UploadContentButton' +import DownloadContentButton from './DownloadContentButton' + +ContentViewOptions.propTypes = { + flow: React.PropTypes.object.isRequired, + message: React.PropTypes.object.isRequired, +} + +function ContentViewOptions(props) { + const { flow, message, uploadContent, readonly, contentViewDescription } = props + return ( +
+ +   + +   + +   + {contentViewDescription} +
+ ) +} + +export default connect( + state => ({ + contentViewDescription: state.ui.flow.viewDescription + }) +)(ContentViewOptions) -- cgit v1.2.3