mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-06 02:36:44 -05:00
9 lines
263 B
TypeScript
9 lines
263 B
TypeScript
|
|
const Loading = async () => {
|
|
return (
|
|
<div className="flex justify-center pt-10 h-screen">
|
|
<div className="animate-spin rounded-full h-32 w-32 border-t-2 border-b-2 border-green-500"></div>
|
|
</div>
|
|
)
|
|
}
|
|
export default Loading; |