CFE-6 init call widget and change directory dashboard component

This commit is contained in:
AmirHossein Mahmoodi
2023-10-02 16:14:10 +03:30
parent e39acb63f4
commit edc89c9e86
22 changed files with 96 additions and 14 deletions

View File

@@ -0,0 +1,6 @@
import {forwardRef} from "react";
import {Slide} from "@mui/material";
export const DialogTransition = forwardRef(function DialogTransition(props, ref) {
return <Slide direction="up" ref={ref} {...props}/>;
});

View File

@@ -0,0 +1,11 @@
import {Fab, styled} from "@mui/material";
const StyledFab = styled(Fab)`
position: absolute;
bottom: 16px;
/* @noflip */
left: 16px;
z-index: 1500;
`;
export default StyledFab;