diff --git a/common/app/routes/Jobs/components/Show.jsx b/common/app/routes/Jobs/components/Show.jsx new file mode 100644 index 0000000000..5d955b3f02 --- /dev/null +++ b/common/app/routes/Jobs/components/Show.jsx @@ -0,0 +1,49 @@ +import React, { PropTypes } from 'react'; +import { Thumbnail, Panel, Well } from 'react-bootstrap'; +import moment from 'moment'; + +export default React.createClass({ + displayName: 'ShowJob', + propTypes: { + job: PropTypes.object + }, + + renderHeader({ company, position }) { + return ( +
+

{ company }

+
+ { position } +
+
+ ); + }, + + render() { + const { job } = this.props.job; + + return ( + + + + + Position: { position } + Location: { city }, { state } +
+ Contact: { email || phone || 'N/A' } +
+ Posted On: { moment(postedOn).format('MMMM Do, YYYY') } +
+

{ description }

+
+
+ ); + } +});