import React, { FC } from 'react'; type DiffProps = { show: boolean; }; const Diff: FC = ({ show }) => { if (typeof window === 'undefined') { return null; } const src = window.location.href.replace(/(https?:\/\/)[^/]+/, '$1ant.design'); return (