logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

modal_loading.js (545B)


  1. import React from 'react';
  2. import LoadingIndicator from '../../../components/loading_indicator';
  3. // Keep the markup in sync with <BundleModalError />
  4. // (make sure they have the same dimensions)
  5. const ModalLoading = () => (
  6. <div className='modal-root__modal error-modal'>
  7. <div className='error-modal__body'>
  8. <LoadingIndicator />
  9. </div>
  10. <div className='error-modal__footer'>
  11. <div>
  12. <button className='error-modal__nav onboarding-modal__skip' />
  13. </div>
  14. </div>
  15. </div>
  16. );
  17. export default ModalLoading;