import { Paper, Typography } from "@mui/material"; import React, { PropsWithChildren } from "react"; import Grid from "@mui/material/Grid"; export function EditSection( p: { title?: string; actions?: React.ReactElement; fullWidth?: boolean; } & PropsWithChildren ): React.ReactElement { return ( {(p.title || p.actions) && ( {p.title && ( {p.title} )} {p.actions} )} {p.children} ); }