Code & Deploy
siGit Code
Git Hosting
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@samitouri
/
QOS-React
QOS-React
/
fixtures
/
flight-ssr-bench
/
src
/
components
/
Skeleton.js
Code
Commits
Issues
Pulls
Sessions
CI/CD
main
main
js
9 lines
197 Bytes
Copy permalink
Copy
Raw
1
'
use client
'
;
2
3
export
default
function
Skeleton
({
type
})
{
4
return
(
5
<
div
className
=
{
'
skeleton skeleton-
'
+
type
}
aria
-
busy
=
"
true
"
>
6
<
div
className
=
"
skeleton-shimmer
"
/>
7
<
/div
>
8
);
9
}