gitextract_vywxl4o3/ ├── .babelrc ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src/ │ ├── App/ │ │ ├── App.jsx │ │ └── index.js │ ├── HomePage/ │ │ ├── HomePage.jsx │ │ └── index.js │ ├── LoginPage/ │ │ ├── LoginPage.jsx │ │ └── index.js │ ├── _components/ │ │ ├── PrivateRoute.jsx │ │ └── index.js │ ├── _helpers/ │ │ ├── auth-header.js │ │ ├── fake-backend.js │ │ ├── handle-response.js │ │ ├── history.js │ │ └── index.js │ ├── _services/ │ │ ├── authentication.service.js │ │ ├── index.js │ │ └── user.service.js │ ├── index.html │ └── index.jsx └── webpack.config.js