import React from 'react'; import { LinkContainer } from 'react-router-bootstrap'; import { Button, Col, Row } from 'react-bootstrap'; export default class extends React.createClass { static displayName = 'NewJobCompleted'; shouldComponentUpdate() { return false; } render() { return (

Your Position has Been Submitted

We’ll review your listing and email you when it’s live.
Thank you for listing this job with Free Code Camp.
); } }