React
Webpack
vs
Final encounter coming soon!
ES experiment FTW!
Enzyme
Karma
* frontend (<-- apps go here)
  |-- apps
      |-- Build
          |-- index.js (<-- entry file)
          |-- components
              |-- PostItItem
                  |-- PostItItem.js
                  |-- PostItItem.spec.js
                  |-- PostItItem.css
                  |-- package.json
          |-- containers
              |-- PostItItemContainer.js
          |-- actions
              |-- postIts.js
          |-- reducer
              |-- postIts.js
  |-- lib (<-- shared stuff we created)
      |-- components
      |-- utils
      |-- etc.
  |-- vendor (<-- shared stuff others created)
* frontend (<-- apps go here)
  |-- apps
      |-- Build
          |-- index.js (<-- entry file)
          |-- PostIts
              |-- postItActions.js
              |-- postItsReducer.js
              |-- PostItItem.js
              |-- PostItItem.spec.js
              |-- PostItItem.css
              |-- PostItsList.js
              |-- PostItsList.spec.js
              |-- PostItsList.css
              |-- PostItsListContainer.js
              |-- PostItItemContainer.js
  |-- lib (<-- shared stuff we created)
      |-- components
      |-- utils
      |-- etc.
  |-- vendor (<-- shared stuff others created)