Files
freeCodeCamp/common/app/routes/Jobs/components/Jobs.jsx
2015-07-25 13:58:26 -07:00

27 lines
443 B
JavaScript

import React, { PropTypes } from 'react';
import { contain } from 'thundercats';
import { Grid, Row } from 'react-bootstrap';
export default contain(
{
store: 'jobsStore',
actions: 'jobActions'
},
React.createClass({
displayName: 'Jobs',
propTypes: {
jobs: PropTypes.array
},
render() {
return (
<Grid>
<Row>
foo
</Row>
</Grid>
);
}
})
);