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

27 lines
443 B
React
Raw Normal View History

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