import { Spinner } from 'react-bootstrap';
export default function LoadingOverlay({ loading }) {
if (!loading) return null;
return (
Loading...
);
}
const styles = {
overlay: {
position: 'fixed',
top: 0,
left: 0,
width: '100%',
height: '100%',
backgroundColor: 'rgba(255, 255, 255, 0.6)',
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
zIndex: 9999,
},
};