change mongodb to mongo atlas

This commit is contained in:
kicap1992
2022-07-20 01:22:21 +08:00
parent 58671436a7
commit 576831eae8
23 changed files with 5985 additions and 119 deletions

View File

@ -0,0 +1,11 @@
import { styled , useTheme } from '@mui/material/styles';
const AdminDrawerHeader = styled('div')(({ theme }) => ({
display: 'flex',
alignItems: 'center',
padding: theme.spacing(0, 1),
// necessary for content to be below app bar
...theme.mixins.toolbar,
justifyContent: 'flex-end',
}));
export default AdminDrawerHeader;