add initial react app

This commit is contained in:
Berkeley Martinez
2015-06-17 21:04:28 -07:00
parent bfddc0330f
commit a8540bee35
42 changed files with 299 additions and 244 deletions

View File

@@ -0,0 +1,28 @@
import React, { PropTypes } from 'react';
import { createContainer } from 'thundercats';
import { Grid, Row } from 'react-bootstrap';
@createContainer({
store: 'JobsStore'
})
export default class extends React.Component {
constructor(props) {
super(props);
}
static displayName = 'Jobs'
static propTypes = {
jobs: PropTypes.array
}
render() {
return (
<Grid>
<Row>
foo
</Row>
</Grid>
);
}
}