about summary refs log tree commit diff
path: root/app/assets/javascripts/components/components/loading_indicator.jsx
blob: 7b738ac32cce7169e7499a2a979d8e4be9e9484c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
const LoadingIndicator = () => {
  const style = {
    textAlign: 'center',
    fontSize: '16px',
    fontWeight: '500',
    color: '#616b86',
    paddingTop: '120px'
  };

  return <div style={style}>Loading...</div>;
};

export default LoadingIndicator;