feat: add loading overlay to between navigations and to auth form events

This commit is contained in:
Mahyar Khanbolooki
2025-07-03 18:51:33 +03:30
parent 5ccbb9c467
commit a5d2e9cf72
4 changed files with 67 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
import LoadingOverlay from '@/components/loading/LoadingOverlay'
import React from 'react'
function Loading() {
return (
<LoadingOverlay />
)
}
export default Loading