This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-07-07 15:06:02 -07:00
|
|
|
import React from 'react';
|
|
|
|
|
2017-12-03 23:26:40 -08:00
|
|
|
import LoadingIndicator from 'flavours/glitch/components/loading_indicator';
|
2017-07-07 15:06:02 -07: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;
|