import React, { PropTypes } from 'react'; import { Well, Button, Row } from 'react-bootstrap'; import { contain } from 'thundercats-react'; import ShowJob from './ShowJob.jsx'; export default contain( { store: 'JobsStore', actions: [ 'appActions', 'jobActions' ], map({ form: job = {} }) { return { job }; } }, React.createClass({ displayName: 'Preview', propTypes: { appActions: PropTypes.object, job: PropTypes.object, jobActions: PropTypes.object }, render() { const { appActions, job, jobActions } = this.props; return (