[Glitch] Rename JSX files with proper .jsx extension

Port 44a7d87cb1 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
Renaud Chaput
2023-02-25 14:34:32 +01:00
committed by Claire
parent 859eb01aac
commit 81ef21a0c8
265 changed files with 6 additions and 6 deletions

View File

@ -0,0 +1,20 @@
import React from 'react';
import LoadingIndicator from 'flavours/glitch/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;