File tree 2 files changed +16
-7
lines changed
src/components/ShowProjects
2 files changed +16
-7
lines changed Original file line number Diff line number Diff line change 5
5
" firebase.json" ,
6
6
" **/.*" ,
7
7
" **/node_modules/**"
8
- ]
8
+ ],
9
+ "rewrites" : [
10
+ {
11
+ "source" : " **" ,
12
+ "destination" : " /index.html"
13
+ }
14
+ ]
9
15
}
10
16
}
Original file line number Diff line number Diff line change @@ -173,6 +173,14 @@ function Showprojects()
173
173
< ToastContainer />
174
174
< div className = "mt" >
175
175
< SearchBox fetchProjects = { fetchProjects } />
176
+
177
+ { isLoading ? (
178
+ < div className = "loading_indicator" >
179
+ < Bars stroke = { "#6f6ee1" } fill = "#6f6ee1" width = "60" height = "90" />
180
+ < p > Fetching { query } projects </ p >
181
+ </ div >
182
+ ) : null }
183
+
176
184
< div className = " default_options filtre-div" >
177
185
< label className = "container" >
178
186
Beginner Level
@@ -305,12 +313,7 @@ function Showprojects()
305
313
< h2 className = "query" > Enter query to search for projects. </ h2 >
306
314
) }
307
315
308
- { isLoading ? (
309
- < div className = "loading_indicator" >
310
- < Bars stroke = { "#6f6ee1" } fill = "#6f6ee1" width = "60" height = "90" />
311
- < p > Fetching { query } projects </ p >
312
- </ div >
313
- ) : null }
316
+
314
317
315
318
< div className = "projectsList" >
316
319
{ projects &&
You can’t perform that action at this time.
0 commit comments