import PropTypes from 'prop-types' import { Backdrop, CircularProgress } from '@mui/material' export const BackdropLoader = ({ open }) => { return (
theme.zIndex.drawer + 1 }} open={open}>
) } BackdropLoader.propTypes = { open: PropTypes.bool }