Forked from ryanflorence/react-app-file-structure
Last active
August 29, 2015 14:25
-
-
Save frexos/685c07bad093eac913c7 to your computer and use it in GitHub Desktop.
Revisions
-
ryanflorence revised this gist
Jan 12, 2015 . 1 changed file with 45 additions and 44 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,47 +1,48 @@ . ├── actions ├── stores ├── views │ ├── Anonymous │ │ ├── __tests__ │ │ ├── views │ │ │ ├── Home │ │ │ │ ├── __tests__ │ │ │ │ └── Handler.js │ │ │ └── Login │ │ │ ├── __tests__ │ │ │ └── Handler.js │ │ └── Handler.js │ └── SignedIn │ ├── __tests__ │ ├── lib │ │ └── components │ │ ├── __tests__ │ │ └── Avatar.js │ ├── views │ │ ├── Courses │ │ │ ├── __tests__ │ │ │ ├── views │ │ │ │ ├── Assignments │ │ │ │ │ ├── __tests__ │ │ │ │ │ └── Handler.js │ │ │ │ ├── Default │ │ │ │ │ ├── __tests__ │ │ │ │ │ └── Handler.js │ │ │ │ ├── Grades │ │ │ │ │ ├── __tests__ │ │ │ │ │ └── Handler.js │ │ │ │ └── Users │ │ │ │ ├── __tests__ │ │ │ │ └── Handler.js │ │ │ └── Handler.js │ │ └── Dashboard │ │ ├── __tests__ │ │ ├── components │ │ │ ├── __tests__ │ │ │ ├── Stream.js │ │ │ ├── StreamItem.js │ │ │ ├── TodoItem.js │ │ │ └── TodoList.js │ │ └── Handler.js │ └── Handler.js └── main.js -
ryanflorence renamed this gist
Jan 12, 2015 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
ryanflorence revised this gist
Jan 12, 2015 . 1 changed file with 0 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -45,5 +45,3 @@ ├── TodoItem.js ├── TodoList.js └── __tests__ -
ryanflorence renamed this gist
Jan 12, 2015 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
ryanflorence revised this gist
Jan 12, 2015 . 1 changed file with 47 additions and 47 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,49 +1,49 @@ . ├── actions ├── main.js ├── stores └── views ├── Anonymous │ ├── Handler.js │ ├── __tests__ │ └── views │ ├── Home │ │ ├── Handler.js │ │ └── __tests__ │ └── Login │ ├── Handler.js │ └── __tests__ └── SignedIn ├── Handler.js ├── __tests__ ├── lib │ └── components │ └── Avatar.js └── views ├── Courses │ ├── Handler.js │ ├── __tests__ │ └── views │ ├── Assignments │ │ ├── Handler.js │ │ └── __tests__ │ ├── Default │ │ ├── Handler.js │ │ └── __tests__ │ ├── Grades │ │ ├── Handler.js │ │ └── __tests__ │ └── Users │ ├── Handler.js │ └── __tests__ └── Dashboard ├── Handler.js ├── __tests__ └── components ├── Stream.js ├── StreamItem.js ├── TodoItem.js ├── TodoList.js └── __tests__ 30 directories, 16 files -
ryanflorence revised this gist
Jan 11, 2015 . 1 changed file with 25 additions and 11 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -3,33 +3,47 @@ │ ├── Anonymous │ │ ├── Handler.js │ │ ├── Home │ │ │ ├── Handler.js │ │ │ └── __tests__ │ │ ├── Login │ │ │ ├── Handler.js │ │ │ └── __tests__ │ │ └── __tests__ │ ├── SignedIn │ │ ├── Courses │ │ │ ├── Assignments │ │ │ │ ├── Handler.js │ │ │ │ └── __tests__ │ │ │ ├── Default │ │ │ │ ├── Handler.js │ │ │ │ └── __tests__ │ │ │ ├── Grades │ │ │ │ ├── Handler.js │ │ │ │ └── __tests__ │ │ │ ├── Handler.js │ │ │ ├── Users │ │ │ │ ├── Handler.js │ │ │ │ └── __tests__ │ │ │ └── __tests__ │ │ ├── Dashboard │ │ │ ├── Handler.js │ │ │ ├── __tests__ │ │ │ └── components │ │ │ ├── Stream.js │ │ │ ├── StreamItem.js │ │ │ ├── TodoItem.js │ │ │ ├── TodoList.js │ │ │ └── __tests__ │ │ ├── Handler.js │ │ └── __tests__ │ ├── __tests__ │ └── main.js ├── lib │ ├── components │ │ └── Avatar.js │ └── utils │ └── API.js ├── package.json └── webpack.config.js 27 directories, 19 files -
ryanflorence created this gist
Jan 11, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,35 @@ . ├── app │ ├── Anonymous │ │ ├── Handler.js │ │ ├── Home │ │ │ └── Handler.js │ │ └── Login │ │ └── Handler.js │ ├── SignedIn │ │ ├── Courses │ │ │ ├── Assignments │ │ │ │ └── Handler.js │ │ │ ├── Default │ │ │ │ └── Handler.js │ │ │ ├── Grades │ │ │ │ └── Handler.js │ │ │ ├── Handler.js │ │ │ └── Users │ │ │ └── Handler.js │ │ ├── Dashboard │ │ │ ├── Handler.js │ │ │ └── components │ │ │ ├── Stream.js │ │ │ ├── StreamItem.js │ │ │ ├── TodoItem.js │ │ │ └── TodoList.js │ │ └── Handler.js │ └── main.js ├── lib │ ├── components │ │ └── Avatar.js │ └── utils │ └── API.js ├── package.json └── webpack.config.js