Skip to content

Instantly share code, notes, and snippets.

@ryanflorence
Last active March 5, 2016 01:32
Show Gist options
  • Save ryanflorence/d5188a2d4ce6555726c7 to your computer and use it in GitHub Desktop.
Save ryanflorence/d5188a2d4ce6555726c7 to your computer and use it in GitHub Desktop.
ui2/app
├── components
│   ├── Header.js
│   └── Main.js
├── shared
│   ├── components
│   │   ├── T-test.js
│   │   └── T.js
│   ├── lib
│   │   ├── I18n.js
│   │   ├── axiosWrapper.js
│   │   └── createStore.js
│   ├── AppDispatcher.js
│   └── Constants.js
├── views
│   ├── Admin
│   │   ├── shared
│   │   │   ├── actions
│   │   │   │   ├── AccountActions.js
│   │   │   │   └── AccountServerActions.js
│   │   │   ├── stores
│   │   │   │   └── AccountStore.js
│   │   │   └── utils
│   │   │   └── AccountApiUtils.js
│   │   ├── views
│   │   │   ├── Accounts
│   │   │   │   ├── components
│   │   │   │   │   ├── AccountCreationForm
│   │   │   │   │   │   └── index.js
│   │   │   │   │   ├── AccountEditForm
│   │   │   │   │   │   ├── AccountEditForm-test.js
│   │   │   │   │   │   └── index.js
│   │   │   │   │   ├── AccountsList
│   │   │   │   │   │   ├── AccountsList-test.js
│   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   └── styles.scss
│   │   │   │   │   └── AccountsListItem
│   │   │   │   │   ├── AccountsListItem-test.js
│   │   │   │   │   ├── index.js
│   │   │   │   │   └── styles.scss
│   │   │   │   └── index.js
│   │   │   └── Users
│   │   │   ├── actions
│   │   │   │   ├── UserActions.js
│   │   │   │   └── UserServerActions.js
│   │   │   ├── components
│   │   │   │   ├── UserCreationForm
│   │   │   │   │   └── index.js
│   │   │   │   ├── UserEditForm
│   │   │   │   │   ├── UserEditForm-test.js
│   │   │   │   │   └── index.js
│   │   │   │   ├── UsersList
│   │   │   │   │   ├── UsersList-test.js
│   │   │   │   │   └── index.js
│   │   │   │   └── UsersListItem
│   │   │   │   ├── UsersListItem-test.js
│   │   │   │   └── index.js
│   │   │   ├── stores
│   │   │   │   └── UserStore.js
│   │   │   ├── utils
│   │   │   │   └── UserApiUtils.js
│   │   │   └── index.js
│   │   └── index.js
│   ├── Collection
│   │   └── index.js
│   ├── Library
│   │   └── index.js
│   ├── Login
│   │   └── index.js
│   ├── Media
│   │   ├── views
│   │   │   ├── Edit
│   │   │   │   └── index.js
│   │   │   └── Show
│   │   │   └── index.js
│   │   └── index.js
│   └── NotFound
│   └── index.js
├── index.js
├── main.js
└── routes.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment