Directory structure:
└── john-smilga-starter-project-react-github-search-users/
├── README.md
├── package.json
├── public/
│ ├── _redirects
│ ├── index.html
│ ├── manifest.json
│ └── robots.txt
└── src/
├── App.js
├── App.test.js
├── index.css
├── index.js
├── serviceWorker.js
├── setupTests.js
├── components/
│ ├── Card.js
│ ├── Followers.js
│ ├── index.js
│ ├── Info.js
│ ├── Navbar.js
│ ├── Repos.js
│ ├── Search.js
│ ├── User.js
│ └── Charts/
│ ├── Bar3D.js
│ ├── Column3D.js
│ ├── Doughnut2d.js
│ ├── ExampleChart.js
│ ├── index.js
│ └── Pie3D.js
├── context/
│ ├── context.js
│ └── mockData.js/
│ ├── mockFollowers.js
│ └── mockUser.js
└── pages/
├── AuthWrapper.js
├── Dashboard.js
├── Error.js
├── index.js
├── Login.js
└── PrivateRoute.js