2015-06-17 21:04:28 -07:00
|
|
|
import React, { PropTypes } from 'react';
|
2015-07-25 15:15:59 -07:00
|
|
|
import { contain } from 'thundercats-react';
|
2015-06-17 21:04:28 -07:00
|
|
|
import { Grid, Row } from 'react-bootstrap';
|
|
|
|
|
2015-07-25 13:58:26 -07:00
|
|
|
export default contain(
|
|
|
|
{
|
|
|
|
store: 'jobsStore',
|
2015-07-25 15:42:03 -07:00
|
|
|
fetchAction: 'jobActions.getJobs'
|
2015-07-25 13:58:26 -07:00
|
|
|
},
|
|
|
|
React.createClass({
|
|
|
|
displayName: 'Jobs',
|
|
|
|
propTypes: {
|
|
|
|
jobs: PropTypes.array
|
|
|
|
},
|
2015-06-17 21:04:28 -07:00
|
|
|
|
2015-07-25 13:58:26 -07:00
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<Grid>
|
|
|
|
<Row>
|
|
|
|
foo
|
|
|
|
</Row>
|
|
|
|
</Grid>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
);
|