Files
freeCodeCamp/common/app/routes/Jobs/components/JobNotFound.jsx

32 lines
718 B
JavaScript
Raw Normal View History

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';
import { Button, Row, Col, Panel } from 'react-bootstrap';
2015-11-05 15:10:18 -08:00
export default React.createClass({
2015-10-19 22:51:30 -07:00
displayName: 'NoJobFound',
render() {
return (
<div>
<Row>
<Col
md={ 6 }
mdOffset={ 3 }>
<Panel>
No job found...
<LinkContainer to='/jobs'>
<Button
block={ true }
bsSize='large'
bsStyle='primary'>
Go to the job board
</Button>
</LinkContainer>
</Panel>
</Col>
</Row>
</div>
);
}
});