github.com/quickfeed/quickfeed@v0.0.0-20240507093252-ed8ca812a09c/public/src/components/Loading.tsx (about) 1 import React from "react" 2 3 4 const Loading = (): JSX.Element => { 5 return ( 6 <div className="centered"> 7 <i className="fa fa-refresh fa-spin fa-3x fa-fw" /> 8 <p><strong>Loading...</strong></p> 9 </div> 10 ) 11 } 12 13 export default Loading