import { Paper, Typography } from "@mui/material"; export function PropertiesBox( p: React.PropsWithChildren<{ title: string }> ): React.ReactElement { return ( {p.title} {p.children} ); }