Files
nym/explorer-nextjs_legacy/app/loading.tsx
T

11 lines
194 B
TypeScript

import React from 'react'
import { LinearProgress, Box } from '@mui/material'
export default function Loading() {
return (
<Box sx={{ py: 16 }}>
<LinearProgress />
</Box>
)
}