import React, { PropTypes } from 'react'; import { History } from 'react-router'; import { Button, Modal } from 'react-bootstrap'; export default React.createClass({ displayName: 'CreateJobsModal', propTypes: { onHide: PropTypes.func, showModal: PropTypes.bool }, mixins: [History], goToNewJob() { this.history.pushState(null, '/jobs/new'); }, render() { const { showModal, onHide } = this.props; return (

Welcome to Free Code Camp's board

We post jobs specifically target to our junior developers.

); } });