Code & Deploy
Code
Code Review
Models
Repos
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@setoelkahfi
/
tower-of-bazel
tower-of-bazel
/
frontend
/
splitfire-desktop
/
components
/
ui
/
loading-view.tsx
Code
Commits
Issues
Pulls
Sessions
CI/CD
feature/share-libs
feature/share-libs
main
tsx
6 lines
246 Bytes
Copy permalink
Copy
Raw
1
export
function
LoadingView
()
{
2
// Tailwindcss loading spinner
3
return
<
div
className
=
"flex justify-center items-center"
>
4
<
div
className
=
"animate-spin rounded-full h-32 w-32 border-t-2 border-b-2 border-red-500"
></
div
>
5
</
div
>
6
}