mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-28 13:00:56 +03:00
add functionality to export and load database
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import PropTypes from 'prop-types'
|
||||
import { Backdrop, CircularProgress } from '@mui/material'
|
||||
|
||||
export const BackdropLoader = ({ open }) => {
|
||||
return (
|
||||
<div>
|
||||
<Backdrop sx={{ color: '#fff', zIndex: (theme) => theme.zIndex.drawer + 1 }} open={open}>
|
||||
<CircularProgress color='inherit' />
|
||||
</Backdrop>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
BackdropLoader.propTypes = {
|
||||
open: PropTypes.bool
|
||||
}
|
||||
Reference in New Issue
Block a user