Guest User

Untitled

a guest
Dec 18th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. ├── README.md
  2. ├── next.config.js
  3. ├── package.json
  4. ├── pages
  5. │ ├── _document.js
  6. │ ├── about.js
  7. │ └── index.js
  8. ├── routes.js
  9. ├── server
  10. │ └── index.js
  11. ├── src
  12. │ ├── actions
  13. │ │ └── repos.js
  14. │ ├── components
  15. │ │ └── SearchResults.js
  16. │ ├── config.js
  17. │ ├── containers
  18. │ │ └── SearchRepoContainer.js
  19. │ ├── libs
  20. │ │ └── github.js
  21. │ ├── reducers
  22. │ │ ├── index.js
  23. │ │ └── repos.js
  24. │ ├── store
  25. │ │ └── createStore.js
  26. │ ├── styles
  27. │ │ ├── SearchResults.scss
  28. │ │ └── base.scss
  29. │ └── test
  30. │ ├── __mocks__
  31. │ │ └── styleMock.js
  32. │ ├── components
  33. │ │ └── SearchResults.test.js
  34. │ └── jest.setup.js
  35. └── yarn.lock
Add Comment
Please, Sign In to add comment