add loading page

This commit is contained in:
Amirhossein Mahmoodi
2024-12-09 11:11:31 +03:30
parent 2c2ebe3b97
commit 596d44d3f2
8 changed files with 47 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
'use client'
import { Paper } from "@mui/material"
import LoadingHardPage from "./LoadingHardPage"
const PageLoading = () => {
return <Paper elevation={0} sx={{ position: "relative", overflowX: "hidden", width: '100%', height: '100%' }}>
<LoadingHardPage width={100} height={100} loading={true} sx={{ position: 'absolute' }} />
</Paper>
}
export default PageLoading