forked from Your-Peanut-Butter-X-Jelly-Sandwich/its-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathits-frontend.ini
53 lines (52 loc) · 1.9 KB
/
its-frontend.ini
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
its-frontend
├── data
│ └── report.json
├── src
│ ├── app
│ │ └── [locale]
│ │ ├── StoreProvider.tsx
│ │ ├── auth
│ │ │ ├── page.tsx
│ │ │ └── post-social-auth
│ │ │ └── page.tsx
│ │ ├── globals.css
│ │ ├── layout.tsx
│ │ ├── page.tsx
│ │ ├── student
│ │ │ ├── layout.tsx
│ │ │ ├── page.tsx
│ │ │ └── questions
│ │ │ ├── [qn_id]
│ │ │ │ ├── page.tsx
│ │ │ │ └── past-submissions
│ │ │ │ ├── [submission_id]
│ │ │ │ │ └── page.tsx
│ │ │ │ └── page.tsx
│ │ │ └── page.tsx
│ ├── containers
│ │ ├── Landing
│ │ │ └── index.tsx
│ │ ├── Student
│ │ │ ├── Dashboard
│ │ │ │ └── index.tsx
│ │ │ ├── PastSubmissions
│ │ │ │ └── index.tsx
│ │ │ ├── QuestionDetail
│ │ │ │ ├── index.tsx
│ │ │ │ └── test.pdf
│ │ │ ├── Questions
│ │ │ │ └── index.tsx
│ │ │ └── SubmissionDetail
│ │ │ └── index.tsx
│ └── redux
│ ├── actions
│ │ ├── questionActions.js
│ │ └── types.js
│ ├── apis
│ ├── createApi.ts
│ ├── index.ts
│ ├── reducers
│ │ └── index.ts
│ └── slices
│ └── auth
│ └── index.ts