import React from 'react'; import { css, Global } from '@emotion/react'; import { useTheme } from 'antd-style'; import { updateCSS } from 'rc-util/lib/Dom/dynamicCSS'; export default () => { const { anchorTop } = useTheme(); React.useInsertionEffect(() => { updateCSS(`@layer global, antd;`, 'site-global', { prepend: true, }); }, []); return ( ); };