Advertisement
Guest User

Folder structure

a guest
Jul 27th, 2016
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.20 KB | None | 0 0
  1. .
  2. ├── app.json
  3. ├── .babelrc
  4. ├── build
  5. │   ├── 1dc35d25e61d819a9c357074014867ab.ttf
  6. │   ├── 25a32416abee198dd821b0b17a198a8f.eot
  7. │   ├── 448c34a56d699c29117adc64c43affeb.woff2
  8. │   ├── 7325ed0b4243335b85332b7f70301e72.jpg
  9. │   ├── 89889688147bd7575d6327160d64e760.svg
  10. │   ├── app.js
  11. │   ├── c4584a3be5e75b1595685a1798c50743.png
  12. │   ├── c8ddf1e5e5bf3682bc7bebf30f394148.woff
  13. │   ├── d7c639084f684d66a1bc66855d193ed8.svg
  14. │   ├── e18bbf611f2a2e43afc071aa2f4e1512.ttf
  15. │   ├── e6cf7c6ec7c2d6f670ae9d762604cb0b.woff2
  16. │   ├── e9c73ff3714160500448255fc6c8ba1c.eot
  17. │   ├── f4769f9bdb7466be65088239c12046d1.eot
  18. │   ├── fa2772327f55d8198301fdb8bcfc8158.woff
  19. │   ├── index.html
  20. │   └── tf-icon-blue.png
  21. ├── circle.yml
  22. ├── Dockerfile
  23. ├── .env
  24. ├── .env.default
  25. ├── .env-prod
  26. ├── .flowconfig
  27. ├── flowdeclarations
  28. │   ├── localstorage.js
  29. │   ├── react.js
  30. │   └── tfdeclarations
  31. │   ├── TFColor.js
  32. │   ├── TFContext.js
  33. │   ├── TFEvent.js
  34. │   ├── TFLayerPayload.js
  35. │   ├── TFLocale.js
  36. │   ├── TFOrigin.js
  37. │   ├── TFS3Signature.js
  38. │   ├── TFUser.js
  39. │   ├── TFUserPayload.js
  40. │   ├── TFVenue.js
  41. │   └── TFZone.js
  42. ├── .git
  43. ├── .gitignore
  44. ├── LICENSE
  45. ├── nginx.conf
  46. ├── package.json
  47. ├── README.md
  48. ├── release.sh
  49. ├── src
  50. │   ├── app.jsx
  51. │   ├── common
  52. │   │   ├── images
  53. │   │   │   ├── colorful4.jpg
  54. │   │   │   ├── dog.jpg
  55. │   │   │   ├── .DS_Store
  56. │   │   │   ├── flat-avatar.png
  57. │   │   │   ├── flat.png
  58. │   │   │   ├── img1.jpg
  59. │   │   │   ├── img2.jpg
  60. │   │   │   ├── img3.jpg
  61. │   │   │   └── profile-cover.jpg
  62. │   │   ├── logo.png
  63. │   │   └── styles
  64. │   ├── components
  65. │   │   ├── common
  66. │   │   │   ├── AsyncElement.js
  67. │   │   │   ├── ChartElement
  68. │   │   │   │   ├── assets
  69. │   │   │   │   └── C3Chart.jsx
  70. │   │   │   ├── .DS_Store
  71. │   │   │   ├── Forecast
  72. │   │   │   │   └── index.jsx
  73. │   │   │   ├── ImagePicker
  74. │   │   │   │   ├── index.jsx
  75. │   │   │   │   └── style.css
  76. │   │   │   ├── ImagePickerWithUpload
  77. │   │   │   │   ├── index.jsx
  78. │   │   │   │   └── style.css
  79. │   │   │   ├── jquery-jvectormap-2.0.3
  80. │   │   │   │   ├── jquery-jvectormap-2.0.3.css
  81. │   │   │   │   ├── jquery-jvectormap-2.0.3.min.js
  82. │   │   │   │   └── jquery-jvectormap-world-mill-en.js
  83. │   │   │   ├── keen
  84. │   │   │   │   ├── BarChart
  85. │   │   │   │   └── Metric
  86. │   │   │   ├── Loader
  87. │   │   │   │   └── index.jsx
  88. │   │   │   ├── Sidebar
  89. │   │   │   │   ├── index.jsx
  90. │   │   │   │   ├── MenuBar.jsx
  91. │   │   │   │   └── SidebarWidgets
  92. │   │   │   ├── Spinner
  93. │   │   │   │   └── index.jsx
  94. │   │   │   ├── Stats
  95. │   │   │   │   └── index.jsx
  96. │   │   │   ├── TabSelector
  97. │   │   │   │   ├── index.jsx
  98. │   │   │   │   └── style.css
  99. │   │   │   ├── TagsInput
  100. │   │   │   │   └── index.jsx
  101. │   │   │   ├── TextAreaInput
  102. │   │   │   │   └── index.jsx
  103. │   │   │   ├── TextInput
  104. │   │   │   │   └── index.jsx
  105. │   │   │   ├── TimePicker
  106. │   │   │   │   ├── index.jsx
  107. │   │   │   │   └── style.css
  108. │   │   │   ├── TodoList
  109. │   │   │   │   ├── index.jsx
  110. │   │   │   │   └── TodoItem.jsx
  111. │   │   │   └── Translate.js
  112. │   │   ├── layouts
  113. │   │   │   ├── Base.jsx
  114. │   │   │   └── Dashboard
  115. │   │   │   ├── index.jsx
  116. │   │   │   └── TopNav
  117. │   │   └── pages
  118. │   │   ├── dashboard
  119. │   │   │   ├── Blank
  120. │   │   │   ├── Calendar
  121. │   │   │   ├── Charts
  122. │   │   │   ├── Contexts
  123. │   │   │   ├── Docs
  124. │   │   │   ├── Forms
  125. │   │   │   ├── Grid
  126. │   │   │   ├── Home
  127. │   │   │   ├── Invoice
  128. │   │   │   ├── Mail
  129. │   │   │   ├── Panels
  130. │   │   │   ├── Profile
  131. │   │   │   ├── Table
  132. │   │   │   ├── Tabs
  133. │   │   │   ├── Typography
  134. │   │   │   ├── UIElements
  135. │   │   │   └── VenueList
  136. │   │   ├── ErrorPage.jsx
  137. │   │   ├── Login
  138. │   │   │   ├── index.jsx
  139. │   │   │   └── style.css
  140. │   │   └── Signup.jsx
  141. │   ├── constants
  142. │   │   └── AppConstants.js
  143. │   └── services
  144. │      ├── AuthService.js
  145. │      ├── AWSService.js
  146. │      ├── backend.js
  147. │      └── KeenService.js
  148. ├── webpack.local.config.js
  149. └── webpack.production.config.js
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement