/** * Utility component for rendering nothing. */ export default function RenderNothing(_: Props): JSX.Element | null { return null; }