import React from 'react';
import { Backdrop, CircularProgress } from '@mui/material';

const sx = theme => ({
  zIndex: theme.zIndex.drawer + 1,
  color: '#fff',
});

const Loading = () => (
  <Backdrop sx={sx} open={true}>
    <CircularProgress />
  </Backdrop>
);

export default Loading;
