commit 655386d407fd71248c945ba50b477a1c9005c363
parent 7580590064a8c1128a2a3486da90dd9d6baced86
Author: Konstantin Tarkus <hello@tarkus.me>
Date: Wed, 1 Oct 2014 02:04:58 +0400
Rename App.jsx -> App.js
Diffstat:
3 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
@@ -34,7 +34,7 @@
│ ├── /services/ # Services and business logic
│ ├── /stores/ # Stores contain the application state and logic
│ ├── /styles/ # LESS style sheets (or SASS/SCSS, Stylus etc.)
-│ ├── /App.jsx # Entry point of your web application
+│ ├── /App.js # Entry point of your web application
│ └── /AppDispatcher.js # The central hub that manages all data flow
├── /test/ # Unit, integration and load tests
│ ├── /e2e/ # End-to-end tests
diff --git a/config/webpack.js b/config/webpack.js
@@ -23,7 +23,7 @@ module.exports = function (release) {
cache: !release,
debug: !release,
devtool: false,
- entry: './src/App.jsx',
+ entry: './src/App.js',
stats: {
colors: true,
diff --git a/src/App.jsx b/src/App.js