Skip to content

Instantly share code, notes, and snippets.

@thomastuts
Created February 24, 2015 14:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thomastuts/05a5a7de350a60c3138d to your computer and use it in GitHub Desktop.
Save thomastuts/05a5a7de350a60c3138d to your computer and use it in GitHub Desktop.
app/
├── index.html
└── src
├── app.js
├── bundle.js
├── common
│   ├── auth.js
│   ├── router.js
│   └── storage.js
├── components
│   └── navigation
│   └── navigation.js
├── data
│   ├── actions
│   │   └── package-actions.js
│   ├── api
│   │   └── package-api.js
│   ├── constants
│   │   └── package-constants.js
│   ├── dispatchers
│   │   └── app-dispatcher.js
│   └── stores
│   └── package-store.js
└── views
├── container.js
├── dashboard
│   └── dashboard.js
└── login
└── login-form.js
13 directories, 15 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment