File size: 229 Bytes
1c72248
 
 
 
 
 
 
1
2
3
4
5
6
7
8
export default function Loading() {
  return (
    <div className="flex justify-center items-center h-42">
      <div className="animate-spin rounded-full h-12 w-12 border-t-2 border-b-2 border-blue-500"></div>
    </div>
  );
}