Files
ballistic-builder/src/components/Loading-Green/index.tsx

9 lines
263 B
TypeScript
Raw Normal View History

2025-02-01 23:47:45 -05:00
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;