type InsetBoxProps = { className?: string; children: React.ReactChild | React.ReactChild[]; id?: string; }; export default function InsetBox(props: InsetBoxProps): JSX.Element { return (
{props.children}
); }