gitextract_602yozfj/ ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── build/ │ ├── karma.config.js │ ├── lib/ │ │ └── logger.js │ ├── scripts/ │ │ ├── compile.js │ │ └── start.js │ └── webpack.config.js ├── package.json ├── project.config.js ├── public/ │ ├── humans.txt │ └── robots.txt ├── server/ │ └── main.js ├── src/ │ ├── components/ │ │ └── App.js │ ├── index.html │ ├── layouts/ │ │ └── PageLayout/ │ │ ├── PageLayout.js │ │ └── PageLayout.scss │ ├── main.js │ ├── normalize.js │ ├── routes/ │ │ ├── Counter/ │ │ │ ├── components/ │ │ │ │ └── Counter.js │ │ │ ├── containers/ │ │ │ │ └── CounterContainer.js │ │ │ ├── index.js │ │ │ └── modules/ │ │ │ └── counter.js │ │ ├── Home/ │ │ │ ├── components/ │ │ │ │ ├── HomeView.js │ │ │ │ └── HomeView.scss │ │ │ └── index.js │ │ └── index.js │ ├── store/ │ │ ├── createStore.js │ │ ├── location.js │ │ └── reducers.js │ └── styles/ │ ├── _base.scss │ └── main.scss └── tests/ ├── .eslintrc ├── layouts/ │ └── PageLayout.spec.js ├── routes/ │ ├── Counter/ │ │ ├── components/ │ │ │ └── Counter.spec.js │ │ ├── index.spec.js │ │ └── modules/ │ │ └── counter.spec.js │ └── Home/ │ ├── components/ │ │ └── HomeView.spec.js │ └── index.spec.js ├── store/ │ ├── createStore.spec.js │ └── location.spec.js └── test-bundler.js