mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-04 14:04:39 +00:00
a4b8069cf5
Also, only update relative time every minute instead of 6 seconds. My bad
14 lines
256 B
JavaScript
14 lines
256 B
JavaScript
const LoadingIndicator = () => {
|
|
const style = {
|
|
textAlign: 'center',
|
|
fontSize: '16px',
|
|
fontWeight: '500',
|
|
color: '#616b86',
|
|
paddingTop: '120px'
|
|
};
|
|
|
|
return <div style={style}>Loading...</div>;
|
|
};
|
|
|
|
export default LoadingIndicator;
|