diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..674c9fb Binary files /dev/null and b/.DS_Store differ diff --git a/.eslintrc b/.eslintrc new file mode 100644 index 0000000..396b894 --- /dev/null +++ b/.eslintrc @@ -0,0 +1,10 @@ +{ + "extends": "airbnb", + "globals": { + "describe": false, + "it": false, + "expect": false, + "jasmine": false, + "beforeEach": false, + } +} \ No newline at end of file diff --git a/.gitignore b/.gitignore index 04c01ba..660e523 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ node_modules/ -dist/ \ No newline at end of file +dist/ +npm-debug.log* diff --git a/README.md b/README.md index 19b4557..413faa5 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ A barebones repo to get you started with Webpack, Babel, and React. ## Installation -`git clone https://github.com/naomiajacobs/reactBoilerplate` +`git clone https://github.com/kmeraz/reactBoilerplate` then diff --git a/client/.DS_Store b/client/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/client/.DS_Store differ diff --git a/client/app.jsx b/client/app.jsx index b938cb7..ca337c7 100644 --- a/client/app.jsx +++ b/client/app.jsx @@ -1,17 +1,17 @@ - 'use strict'; - import React from 'react'; -import { render } from 'react-dom'; -var App = React.createClass({ +class App extends React.Component { + + constructor(props) { + super(props); + this.state = { + }; + } render() { return