]> cat aescling's git repositories - mastodon.git/blob - app/javascript/mastodon/features/ui/components/modal_loading.js
Fix audio attachments opening in video modal from media tab in web UI (#12056)
[mastodon.git] / app / javascript / mastodon / features / ui / components / modal_loading.js
1 import React from 'react';
2
3 import LoadingIndicator from '../../../components/loading_indicator';
4
5 // Keep the markup in sync with <BundleModalError />
6 // (make sure they have the same dimensions)
7 const ModalLoading = () => (
8 <div className='modal-root__modal error-modal'>
9 <div className='error-modal__body'>
10 <LoadingIndicator />
11 </div>
12 <div className='error-modal__footer'>
13 <div>
14 <button className='error-modal__nav onboarding-modal__skip' />
15 </div>
16 </div>
17 </div>
18 );
19
20 export default ModalLoading;
This page took 0.076885 seconds and 4 git commands to generate.