import React from 'react';
import Spinner from 'components/ui/Spinner';

export default () => {
  return (
    <div style={{display: 'flex', flexDirection: 'column', position: 'absolute', top: 0, left: 0, right: 0, bottom: 0}}>
      <div style={{height: '55px', background: '#181b20'}}></div>
      <div style={{height: '36px', background: '#2b3038', borderBottom: '3px solid #50c773'}}></div>
      <div style={{flexGrow: 1, background: '#181b20'}}><Spinner /></div>
    </div>
  );
};
