i701 bed426a6b4
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 7m23s
feat: add loading state and full-page loader component; update payment page and application layout to improve user experience
2025-05-31 12:37:46 +05:00

9 lines
162 B
TypeScript

import FullPageLoader from '@/components/full-page-loader'
import React from 'react'
export default function Loading() {
return (
<FullPageLoader />
)
}