Created
February 1, 2016 22:29
-
-
Save mobinni/b6b56426be7875454f3c to your computer and use it in GitHub Desktop.
A Modern Isomorphic Stack with Redux - Part 2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
. | |
├── ROADMAP.md | |
├── app | |
│ ├── images | |
│ ├── index.html | |
│ ├── lib | |
│ │ ├── index.js | |
│ │ ├── middleware | |
│ │ ├── modules | |
│ │ │ ├── feed | |
│ │ │ │ ├── actions.js | |
│ │ │ │ ├── constants.js | |
│ │ │ │ ├── index.js | |
│ │ │ │ └── reducers.js | |
│ │ │ └── moduleCollector.js | |
│ │ ├── store | |
│ │ │ └── storeBuilder.js | |
│ │ └── utils | |
│ │ └── devtools.js | |
│ ├── scripts | |
│ │ ├── app.js | |
│ │ ├── components | |
│ │ │ └── Main.jsx | |
│ │ ├── devtools.jsx | |
│ │ └── routes | |
│ │ ├── feed | |
│ │ │ ├── components | |
│ │ │ └── index.js | |
│ │ └── index.js | |
│ └── styles | |
│ ├── components | |
│ │ └── feed.scss | |
│ └── general | |
│ └── styles.scss | |
├── package.json | |
├── server | |
│ ├── engines | |
│ │ ├── index.js | |
│ │ ├── renderEngine.js | |
│ │ └── renderIndex.js | |
│ ├── index.js | |
│ ├── middleware | |
│ │ ├── index.js | |
│ │ ├── render.js | |
│ │ └── webpack.js | |
│ ├── server.js | |
│ └── utils | |
│ └── environment.js | |
└── webpack | |
└── webpack.dev.js |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment