* feat: add theme berry * docs: add development notes * fix: fix blank page * chore: update implementation * fix: fix package.json * chore: update ui copy --------- Co-authored-by: JustSong <songquanpeng@foxmail.com>
22 lines
454 B
JavaScript
22 lines
454 B
JavaScript
// material-ui
|
|
import LinearProgress from '@mui/material/LinearProgress';
|
|
import { styled } from '@mui/material/styles';
|
|
|
|
// styles
|
|
const LoaderWrapper = styled('div')({
|
|
position: 'fixed',
|
|
top: 0,
|
|
left: 0,
|
|
zIndex: 1301,
|
|
width: '100%'
|
|
});
|
|
|
|
// ==============================|| LOADER ||============================== //
|
|
const Loader = () => (
|
|
<LoaderWrapper>
|
|
<LinearProgress color="primary" />
|
|
</LoaderWrapper>
|
|
);
|
|
|
|
export default Loader;
|