PageLoader.js 309 B

1234567891011
  1. import React from 'react';
  2. // See more loading icons here:
  3. // https://fontawesome.com/how-to-use/on-the-web/styling/animating-icons
  4. const PageLoader = () => (
  5. <div className="page-loader">
  6. <em className="fas fa-circle-notch fa-spin fa-2x text-muted"></em>
  7. </div>
  8. )
  9. export default PageLoader;