jpcasa
12/18/2018 - 9:17 PM

Next.js Directory Structure Overview

├── README.md ├── next.config.js ├── package.json ├── pages │ ├── _document.js │ ├── about.js │ └── index.js ├── routes.js ├── server │ └── index.js ├── src │ ├── actions │ │ └── repos.js │ ├── components │ │ └── SearchResults.js │ ├── config.js │ ├── containers │ │ └── SearchRepoContainer.js │ ├── libs │ │ └── github.js │ ├── reducers │ │ ├── index.js │ │ └── repos.js │ ├── store │ │ └── createStore.js │ ├── styles │ │ ├── SearchResults.scss │ │ └── base.scss │ └── test │ ├── mocks │ │ └── styleMock.js │ ├── components │ │ └── SearchResults.test.js │ └── jest.setup.js └── yarn.lock