Co-authored-by: tobi <tobi.smethurst@protonmail.com> Reviewed-on: https://codeberg.org/superseriousbusiness/masto-fe-standalone/pulls/88 Co-authored-by: Zoë Bijl <moiety@noreply.codeberg.org> Co-committed-by: Zoë Bijl <moiety@noreply.codeberg.org>
19 lines
521 B
JavaScript
19 lines
521 B
JavaScript
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;
|