File size: 336 Bytes
2e50ccd
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
export default function Loading() {
  return (
    <div className="flex flex-col items-center justify-center py-20" data-testid="loading">
      <div className="h-10 w-10 animate-spin rounded-full border-4 border-gray-200 border-t-[#1a73e8]" />
      <p className="mt-4 text-sm text-gray-500">Searching flights...</p>
    </div>
  );
}