Last active
February 1, 2025 03:37
-
Star
(190)
You must be signed in to star a gist -
Fork
(25)
You must be signed in to fork a gist
-
-
Save ryanflorence/110d4538bf98694538de to your computer and use it in GitHub Desktop.
This file contains 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
. | |
├── 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
the
app
directory is basically similar to thedashboard
directory. We're currently implementing this structure (having the app and dashboard in the same repo), and them have separate builds for them 😄