You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
545 B
20 lines
545 B
import React from 'react'; |
|
|
|
import LoadingIndicator from '../../../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;
|
|
|