loading map overlay component

This commit is contained in:
Anton Tranelis 2025-06-01 09:21:49 +02:00
parent 49eeab6956
commit b5ea31f2d7
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,9 @@
import { MapOverlayPage } from '#components/Templates/MapOverlayPage'
export const LoadingMapOverlay = () => {
return (
<MapOverlayPage>
<div className='tw:text-center tw:loading tw:loading-spinner'></div>
</MapOverlayPage>
)
}

View File

@ -5,3 +5,5 @@ export { SelectUser } from './SelectUser'
export { OverlayItemsIndexPage } from './OverlayItemsIndexPage'
export { AttestationForm } from './AttestationForm'
export { MarketView } from './MarketView'
export { TagView } from './TagView'
export { LoadingMapOverlay } from './LoadingMapOverlay'