Adding loading.tsx

This commit is contained in:
charles-gauthereau
2024-12-16 16:10:02 +01:00
parent 901a3be374
commit c97d68d697
4 changed files with 48 additions and 5 deletions
+9
View File
@@ -0,0 +1,9 @@
import {LoadingSpinner} from "@/components/wrappers/Loading/LoadingSpinner";
export default function Loading() {
return (
<div className="w-full h-full flex flex-col items-center justify-center">
<LoadingSpinner size={50} />
</div>
)
}