20 lines
No EOL
450 B
JavaScript
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 |