20 lines
450 B
React
20 lines
450 B
React
|
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
|