fifty-shades-of-bully/src/pages/components/loadingScene.jsx
2025-04-18 04:34:55 +07:00

20 lines
No EOL
450 B
JavaScript

import { useState, useEffect } from 'react';
import '../../css/global.css';
function LoadingScene() {
return (
<div style={{
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
height: '100vh',
fontSize: '24px',
color: 'white',
backgroundColor: 'black'
}}>
Loading...
</div>
);
}
export default LoadingScene