2023-06-13 17:26:25 +00:00
|
|
|
import { LoadingIndicator } from '../../../components/loading_indicator';
|
2017-07-07 22:06:02 +00:00
|
|
|
|
|
|
|
// 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;
|