| import React from "react"; | |
| import { ClipLoader } from "react-spinners"; | |
| function Loading() { | |
| return ( | |
| <div> | |
| <div className="w-full h-screen flex justify-center items-center"> | |
| <ClipLoader color="#ff0000" size={160} /> | |
| </div> | |
| </div> | |
| ); | |
| } | |
| export default Loading; | |