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