Skip to content

Commit

Permalink
Converted to a React app
Browse files Browse the repository at this point in the history
  • Loading branch information
Eleazar Meza committed Mar 4, 2020
1 parent 70e918f commit cb47c04
Show file tree
Hide file tree
Showing 24 changed files with 991 additions and 433 deletions.
12 changes: 8 additions & 4 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,18 @@
"jest": true
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"extends": ["airbnb-base"],
"extends": ["airbnb", "plugin:react/recommended"],
"plugins": ["react"],
"rules": {
"react/jsx-filename-extension": ["warn", { "extensions": [".js", ".jsx"] }],
"import/no-unresolved": "off",
"no-shadow": "off",
"no-param-reassign": "off",
"eol-last": "off",
"arrow-parens": "off"
"arrow-parens": ["error", "as-needed"]
}
}
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@

# js-weather
A simple weather app built to get familiar with asynchronous JavaScript.
A simple weather app built to get familiar with asynchronous JavaScript (and now React!).

![screenshot](./screenshot.png)

## Built with

- ES6
- React
- SASS
- npm
- webpack
Expand Down
Loading

0 comments on commit cb47c04

Please sign in to comment.