import React from 'react';
// import promise from 'bluebird';
import { theme } from '../../app/theme';
import { SBox } from '../s-components/layout/s-box';

type TProps = {};

export const SplashOverlay: React.FC<TProps> = () => {
  return <SBox flex={1} width={1} bg={theme.colors.ebonyClay} />;
};
