import { Spinner } from 'react-bootstrap';
export default function LoadingOverlay({ status }) {
if (status !== 'loading') return null;
return (
Loading...
);
}
const styles = {
overlay: {
position: 'absolute', // 可改为 fixed 实现全屏
top: 0,
left: 0,
width: '100%',
height: '100%',
backgroundColor: 'rgba(255, 255, 255, 0.6)', // 半透明背景
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
zIndex: 9999,
},
};