Can sign out
This commit is contained in:
@ -1,3 +1,19 @@
|
||||
import { Box } from "@mui/material";
|
||||
import { VirtWebAppBar } from "./VirtWebAppBar";
|
||||
|
||||
export function BaseAuthenticatedPage(): React.ReactElement {
|
||||
return <>ready with login</>;
|
||||
return (
|
||||
<Box
|
||||
component="div"
|
||||
sx={{
|
||||
minHeight: "100vh",
|
||||
display: "flex",
|
||||
flexDirection: "column",
|
||||
backgroundColor: (theme) => theme.palette.grey[900],
|
||||
color: (theme) => theme.palette.grey[100],
|
||||
}}
|
||||
>
|
||||
<VirtWebAppBar />
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user