18 lines
502 B
TypeScript
18 lines
502 B
TypeScript
|
import React from 'react'
|
||
|
|
||
|
const Loading = () => {
|
||
|
return (
|
||
|
<div className="flex items-center justify-center min-h-screen p-5 min-w-screen">
|
||
|
|
||
|
<div className="flex space-x-2 animate-pulse">
|
||
|
<div className="w-3 h-3 bg-[#D60050] rounded-full"></div>
|
||
|
<div className="w-3 h-3 bg-[#D60050] rounded-full"></div>
|
||
|
<div className="w-3 h-3 bg-[#D60050] rounded-full"></div>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default Loading
|