diff --git a/common/app/routes/Jobs/components/Jobs.jsx b/common/app/routes/Jobs/components/Jobs.jsx index ab5834c706..fec91fc342 100644 --- a/common/app/routes/Jobs/components/Jobs.jsx +++ b/common/app/routes/Jobs/components/Jobs.jsx @@ -1,7 +1,7 @@ import React, { cloneElement, PropTypes } from 'react'; import { contain } from 'thundercats-react'; import { History } from 'react-router'; -import { Button, Panel, Row } from 'react-bootstrap'; +import { Button, Panel, Row, Col } from 'react-bootstrap'; import CreateJobModal from './CreateJobModal.jsx'; import ListJobs from './List.jsx'; @@ -61,27 +61,39 @@ export default contain( return ( -

Free Code Camps' Job Board

-

- Need to find the best junior developers? - Want to find dedicated developers eager to join your company? - Sign up now to post your job! -

- + +

Free Code Camps' Job Board

+ + +

+ Need to find the best junior developers? + Post your job today! +

+ +
+ + + + { this.renderChild(children, jobs) || + this.renderList(this.handleJobClick, jobs) } + + + - - { this.renderChild(children, jobs) || - this.renderList(this.handleJobClick, jobs) } - - ); }