10 lines
No EOL
271 B
TypeScript
10 lines
No EOL
271 B
TypeScript
import Image from "next/image";
|
|
|
|
export default function Loading() {
|
|
return (
|
|
<div className='flex justify-center'>
|
|
<Image src="/loading.svg" alt="Loading" width={25} height={25} />
|
|
<p className='p-2'>Loading</p>
|
|
</div>
|
|
)
|
|
} |