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

27 lines
461 B
React
Raw Normal View History

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';
export default contain(
{
store: 'jobsStore',
2015-07-25 15:42:03 -07:00
fetchAction: 'jobActions.getJobs'
},
React.createClass({
displayName: 'Jobs',
propTypes: {
jobs: PropTypes.array
},
2015-06-17 21:04:28 -07:00
render() {
return (
<Grid>
<Row>
foo
</Row>
</Grid>
);
}
})
);