import { Immutable } from "helpers/types"; interface Props { className?: string; children: React.ReactNode; id?: string; } export function InsetBox(props: Immutable): JSX.Element { return (
{props.children}
); }