~cytrogen/masto-fe

ref: e5869dc9459151ec2d2e44f67cb3092947028601 masto-fe/app/javascript/flavours/glitch/features/ui/components/modal_loading.jsx -rw-r--r-- 528 bytes
e5869dc9 — tobi [docs] Mention correct port (80 not 3000) (#58) 10 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { LoadingIndicator } from 'flavours/glitch/components/loading_indicator';

// Keep the markup in sync with <BundleModalError />
// (make sure they have the same dimensions)
const ModalLoading = () => (
  <div className='modal-root__modal error-modal'>
    <div className='error-modal__body'>
      <LoadingIndicator />
    </div>
    <div className='error-modal__footer'>
      <div>
        <button className='error-modal__nav onboarding-modal__skip' />
      </div>
    </div>
  </div>
);

export default ModalLoading;