You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
256 B

  1. const LoadingIndicator = () => {
  2. const style = {
  3. textAlign: 'center',
  4. fontSize: '16px',
  5. fontWeight: '500',
  6. color: '#616b86',
  7. paddingTop: '120px'
  8. };
  9. return <div style={style}>Loading...</div>;
  10. };
  11. export default LoadingIndicator;