Add system info

This commit is contained in:
2024-05-04 09:11:30 +02:00
parent 768ba03807
commit c7306bdd55
10 changed files with 261 additions and 2 deletions

View File

@ -3,6 +3,7 @@ import { ServerApi } from "./api/ServerApi";
import { AuthRouteWidget } from "./routes/AuthRouteWidget";
import { AsyncWidget } from "./widgets/AsyncWidget";
import { MainMenu } from "./widgets/MainMenu";
import { SystemInfoWidget } from "./widgets/SystemInfoWidget";
const useStyles = makeStyles({
title: typographyStyles.title2,
@ -29,7 +30,7 @@ function AppInner(): React.ReactElement {
return (
<div
style={{
width: "100%",
width: "95%",
maxWidth: "1000px",
margin: "50px auto",
}}
@ -38,6 +39,7 @@ function AppInner(): React.ReactElement {
<span className={styles.title}>VirtWebRemote</span>
<MainMenu />
</div>
<SystemInfoWidget />
</div>
);
}