import { Paper, Typography } from "@mui/material"; import { PropsWithChildren } from "react"; export function VirtWebPaper( p: { label: string } & PropsWithChildren ): React.ReactElement { return ( {p.label} {p.children} ); }