mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-01-02 02:48:02 -05:00
10 lines
391 B
TypeScript
10 lines
391 B
TypeScript
// For som unknown reasons, the spinner does not render when using LoadingSpinner(), so I copy paste the div block everywhere (TODO)
|
|
|
|
export default function LoadingSpinner() {
|
|
return (
|
|
<div className="flex justify-center min-h-screen py-8">
|
|
<div data-testid="spinner" className="animate-spin rounded-full h-12 w-12 border-t-2 border-b-2 border-blue-500"></div>
|
|
</div>
|
|
)
|
|
}
|