mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-02-01 09:30:58 -05:00
9 lines
266 B
TypeScript
9 lines
266 B
TypeScript
import React from 'react'
|
|
|
|
export default function LoadingSpinner() {
|
|
return (
|
|
<div style={{ display: 'flex', justifyContent: 'center', minHeight: '100vh', paddingTop: '2rem' }} >
|
|
<div className="spinner border-gray-300 border-t-gray-800" /></div>
|
|
)
|
|
}
|