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