44 lines
1.0 KiB
JavaScript
44 lines
1.0 KiB
JavaScript
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 (
|
||
<div className='text-center'>
|
||
<div>
|
||
<Row>
|
||
<h1>
|
||
Your Position has Been Submitted
|
||
</h1>
|
||
</Row>
|
||
<Row>
|
||
<Col
|
||
md={ 6 }
|
||
mdOffset={ 3 }>
|
||
We’ll review your listing and email you when it’s live.
|
||
<br />
|
||
Thank you for listing this job with Free Code Camp.
|
||
</Col>
|
||
</Row>
|
||
<div className='spacer' />
|
||
<LinkContainer to={ '/jobs' }>
|
||
<Button
|
||
block={ true }
|
||
bsSize='large'
|
||
bsStyle='primary'>
|
||
Go to the job board
|
||
</Button>
|
||
</LinkContainer>
|
||
</div>
|
||
</div>
|
||
);
|
||
}
|
||
}
|