2015-11-05 15:10:18 -08:00
|
|
|
import React from 'react';
|
2015-10-19 22:51:30 -07:00
|
|
|
import { LinkContainer } from 'react-router-bootstrap';
|
2016-01-15 02:46:25 -08:00
|
|
|
import { Button, Row, Col } from 'react-bootstrap';
|
2015-10-19 22:51:30 -07:00
|
|
|
|
2016-02-05 20:48:59 -08:00
|
|
|
export default class extends React.Component {
|
|
|
|
static displayName = 'NoJobFound';
|
|
|
|
|
|
|
|
shouldComponentUpdate() {
|
|
|
|
return false;
|
|
|
|
}
|
2015-10-19 22:51:30 -07:00
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<Row>
|
|
|
|
<Col
|
|
|
|
md={ 6 }
|
|
|
|
mdOffset={ 3 }>
|
2016-01-15 02:46:25 -08:00
|
|
|
<div>
|
2015-10-19 22:51:30 -07:00
|
|
|
No job found...
|
|
|
|
<LinkContainer to='/jobs'>
|
|
|
|
<Button
|
|
|
|
block={ true }
|
|
|
|
bsSize='large'
|
|
|
|
bsStyle='primary'>
|
|
|
|
Go to the job board
|
|
|
|
</Button>
|
|
|
|
</LinkContainer>
|
2016-01-15 02:46:25 -08:00
|
|
|
</div>
|
2015-10-19 22:51:30 -07:00
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2016-02-05 20:48:59 -08:00
|
|
|
}
|