Can upload ISO files

This commit is contained in:
2023-09-05 13:19:25 +02:00
parent 83ccd3a4b9
commit 036595fb24
24 changed files with 671 additions and 36 deletions

View File

@ -0,0 +1,18 @@
import { Paper, Typography } from "@mui/material";
import { PropsWithChildren } from "react";
export function VirtWebPaper(
p: { label: string } & PropsWithChildren
): React.ReactElement {
return (
<Paper elevation={2} style={{ padding: "10px" }}>
<Typography
variant="subtitle1"
style={{ marginBottom: "10px", fontWeight: "bold" }}
>
{p.label}
</Typography>
{p.children}
</Paper>
);
}