-
Notifications
You must be signed in to change notification settings - Fork 0
/
file-structure
39 lines (39 loc) · 1.21 KB
/
file-structure
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
.
├── assets
│ ├── images
│ └── sass/less/css
├── lib
│ ├── actions
│ ├─- reducers
│ ├─- containers
│ ├─- routes
│ ├── components
│ │ ├──tests
│ │ │ └── AuthenticatedComponent.test.jsx
│ │ └── AuthenticatedComponent.jsx
│ ├── constants
│ ├── stores
│ └── utils
├── views
│ ├── Anonymous
│ │ ├── views
│ │ │ ├── Home
│ │ │ │ ├── __tests__
│ │ │ │ │ └── Home.test.jsx
│ │ │ │ └── Home.jsx
│ │ │ └── Login
│ │ │ ├── __tests__
│ │ │ └── Login.jsx
│ │ └── Anonymous.jsx
│ └── SignedIn
│ ├── views
│ │ └── Dashboard
│ │ ├── __tests__
│ │ ├── components
│ │ │ ├── __tests__
│ │ │ ├── TodoItem.jsx
│ │ │ └── TodoList.jsx
│ │ └── Dashboard.jsx
│ └── SignedIn.jsx
├── index.html
└── app.jsx