@@ -3,7 +3,6 @@ import { useEffect } from "react";
33import { styled , useTheme } from "@mui/material/styles" ;
44import Box from "@mui/material/Box" ;
55import Drawer from "@mui/material/Drawer" ;
6- import CssBaseline from "@mui/material/CssBaseline" ;
76import MuiAppBar , { AppBarProps as MuiAppBarProps } from "@mui/material/AppBar" ;
87import Toolbar from "@mui/material/Toolbar" ;
98import List from "@mui/material/List" ;
@@ -17,7 +16,7 @@ import ListItem from "@mui/material/ListItem";
1716import ListItemButton from "@mui/material/ListItemButton" ;
1817import ListItemIcon from "@mui/material/ListItemIcon" ;
1918import ListItemText from "@mui/material/ListItemText" ;
20- import { Link , Menu , MenuItem , MenuList } from "@mui/material" ;
19+ import { Link , Menu , MenuItem , MenuList , Typography } from "@mui/material" ;
2120import { Link as RouterLink , useLocation } from "react-router-dom" ;
2221import { useSelector } from "react-redux" ;
2322import { RootState } from "../types/data" ;
@@ -136,7 +135,6 @@ export default function PersistentDrawerLeft(props) {
136135 // @ts -ignore
137136 return (
138137 < Box sx = { { display : "flex" } } >
139- < CssBaseline />
140138 < AppBar position = "fixed" open = { open } >
141139 < Toolbar >
142140 < IconButton
@@ -327,6 +325,16 @@ export default function PersistentDrawerLeft(props) {
327325 < Main open = { open } >
328326 < DrawerHeader />
329327 { children }
328+ < Box
329+ sx = { {
330+ position : "fixed" ,
331+ bottom : "0px" ,
332+ minHeight : "30px" ,
333+ width : "100%" ,
334+ } }
335+ >
336+ < Typography variant = "body2" > v2.0.0-beta.1</ Typography >
337+ </ Box >
330338 </ Main >
331339 </ Box >
332340 ) ;
0 commit comments