/** * Render a generic script tag in the `` that contains any custom-defined Javascript, if * defined. It no custom JS is defined, an empty fragment is rendered, which will not appear in * the DOM. */ export const CustomJavascript = (props: React.PropsWithChildren): JSX.Element => { const { children } = props; if (typeof children === 'string' && children !== '') { return